-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
48 lines (48 loc) · 1.28 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
40
41
42
43
44
45
46
47
48
{
"name": "streamsheets",
"version": "2.4",
"private": true,
"workspaces": {
"packages": [
"cli/scripts",
"packages/*",
"packages/stream/*",
"packages/webcomponent/*",
"packages/stubs/*",
"pro/*"
],
"nohoist": [
"*/jest",
"*/stream/jest",
"**/jest-cli",
"**/babel-jest",
"**/eslint"
]
},
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"build": "node ./scripts/build.js --name cedalo/streamsheets-dev --tag local",
"tag:latest": "node ./scripts/tag-latest.js --from-image-tag 1.5",
"i18n:check": "node ./scripts/i18n.js --en ./packages/webui/src/languages/en.json --de ./packages/webui/src/languages/de.json",
"start-gateway:watch": "nodemon --delay 2.5 --watch packages/gateway/out",
"functions": "yarn workspace @cedalo/functions",
"gateway": "yarn workspace @cedalo/gateway",
"jsg-core": "yarn workspace @cedalo/jsg-core",
"machine-core": "yarn workspace @cedalo/machine-core",
"parser": "yarn workspace @cedalo/parser",
"webui": "yarn workspace @cedalo/webui"
},
"resolutions": {
"**/**/fs-capacitor":"^6.2.0",
"**/graphql-upload": "^11.0.0"
},
"devDependencies": {
"eslint": "6.8.0",
"fs-extra": "9.0.0",
"klaw": "3.0.0",
"prompts": "2.1.0",
"rimraf": "2.6.3",
"through2": "3.0.1",
"yargs": "13.2.2"
}
}