-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 2.35 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
49
50
{
"name": "@condict/workspace",
"description": "Main Condict workspace.",
"private": true,
"repository": "github:arimah/condict",
"license": "MIT",
"scripts": {
"setup": "npm install && npm run bootstrap && npm run build",
"bootstrap": "lerna bootstrap --hoist",
"clean": "rimraf packages/*/dist",
"build": "node scripts/build.mjs -g build-tools && node scripts/build.mjs -g utils && node scripts/build.mjs -g server && node scripts/build.mjs -g ui && npm run -s build:app",
"build:children": "lerna run build --loglevel=warn --no-progress",
"build:app": "cd packages/app && npm run -s build",
"compile": "rollup --config config/rollup.config.mjs",
"watch:utils": "node scripts/build.mjs -w -g utils",
"watch:ui": "node scripts/build.mjs -w -g ui",
"watch:server": "node scripts/build.mjs -w -g server",
"watch:server-gql": "cd packages/server && npm run -s watch:graphql-types",
"watch:app": "cd packages/app && npm run -s watch",
"serve": "cd ./dev && npx --no-install next",
"dev:ui": "cross-env NODE_ENV=development npm-run-all --silent --parallel --print-label watch:utils watch:ui serve",
"dev:server": "npm run dev:server-prebuild && cross-env NODE_ENV=development npm-run-all --silent --parallel --print-label watch:utils watch:server watch:server-gql",
"dev:server-prebuild": "node scripts/native-target.cjs test server || npm run dev:server-build-native",
"dev:server-build-native": "cd packages/server && npm run build:native",
"dev:app": "cross-env NODE_ENV=development npm-run-all --silent --parallel --print-label watch:utils watch:ui watch:app",
"lint": "eslint --ext .ts,.tsx dev/ packages/",
"test": "lerna run test"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"chalk": "^4.1.2",
"command-line-args": "^5.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"lerna": "^6.1.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^3.5.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
}
}