forked from zenika-open-source/my-zenikanard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "pimpmyduck",
"description": "Customize your own Zenikanard by Zenika",
"author": "Benjamin Petetot",
"license": "Apache-2.0",
"homepage": "https://pimpmyduck.zenika.com",
"repository": {
"type": "git",
"url": "git+https://github.com/zenika-open-source/my-zenikanard.git"
},
"bugs": {
"url": "https://github.com/zenika-open-source/my-zenikanard/issues"
},
"private": true,
"workspaces": [
"packages/*",
"packages/lambda/*"
],
"scripts": {
"start": "yarn workspace @pimpmyduck/app start",
"build": "yarn workspace @pimpmyduck/app build",
"test": "yarn test:functions",
"test:functions": "yarn workspace @pimpmyduck/functions test",
"lambda:upload-ipfs:build": "yarn workspace @pimpmyduck/upload-ipfs build",
"prelambda:deploy": "yarn lambda:upload-ipfs:build",
"lambda:deploy": "sam deploy --template-file=packages/lambda/template.yml"
},
"engines": {
"yarn": ">=1.17.0",
"node": ">=10.16.0"
},
"dependencies": {
"typescript": "^4.5.5"
},
"nohoist": [
"packages/lambda/**/*"
],
"version": "0.0.0"
}