forked from keyvan-m-sadeghi/box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.32 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
{
"name": "root",
"private": true,
"scripts": {
"prepare": "husky install",
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap --no-ci",
"link": "lerna link --force-local",
"list": "lerna list",
"test": "concurrently \"npm:test:*\"",
"test:async-later": "lerna run test --scope=async-later --stream",
"start": "npm run build-all && concurrently \"npm:watch:*\" \"npm:start-all\" --prefix=time",
"build-all": "lerna run build --parallel",
"start-all": "lerna run start --parallel",
"client": "lerna run start --scope=@functionland/graph --stream",
"server": "lerna run start --scope=@functionland/server --stream",
"signal": "lerna run start --scope=@functionland/signal --stream",
"lint": "eslint . --ext .ts",
"lint-format": "prettier --config .prettierrc \"**/*.ts\" \"**/*.js\" --write",
"watch:lint": "onchange \"**/*.ts\" \"**/*.js\" --exclude \"**/dist/*.ts\" \"**/dist/*.js\" -- prettier --write {{changed}}"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-format"
}
},
"devDependencies": {
"concurrently": "^6.0.2",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^7.0.1",
"lerna": "^4.0.0",
"onchange": "^7.1.0",
"prettier": "^2.2.1"
}
}