-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.82 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
51
52
53
54
{
"name": "ravenous",
"description": "",
"version": "1.1.0",
"private": true,
"workspaces": [
"shared/**/*",
"packages/*",
"packages/Back-End/functions"
],
"scripts": {
"clean": "lerna clean --yes && rimraf node_modules",
"clean:build": "lerna exec -- rimraf \"{.next,dist,out,build,.docz}\"",
"start:all": "lerna run --parallel start",
"start:ravenous": "yarn workspace ravenous run start",
"build:ravenous": "yarn workspace ravenous run build",
"test:ravenous": "yarn workspace ravenous run test",
"deploy:ravenous": "yarn workspace ravenous run deploy",
"deploy:backend": "yarn workspace ravenous-backend run deploy",
"logs:social-cnjt-server": "yarn workspace ravenous-backend run logs",
"serve:backend": "yarn workspace ravenous-backend run serve",
"upgrade:ravenous": "yarn workspace ravenous upgrade-interactive --latest",
"upgrade:backend": "yarn workspace ravenous-backend upgrade-interactive --latest",
"start:and:serve": "yarn run start:ravenous && yarn run serve:backend",
"update:all": "lerna exec -- yarn upgrade --latest",
"deploy:all": "yarn run deploy:backend && yarn run deploy:ravenous",
"install:backend": "yarn workspace ravenous-backend install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md,css}": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
},
"devDependencies": {
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"cross-env": "^6.0.0",
"husky": "^3.0.7",
"lerna": "^3.18.3",
"lint-staged": "^9.4.0",
"prettier": "^1.18.2",
"redux-devtools-extension": "^2.13.8",
"rimraf": "^3.0.0",
"serve": "^11.2.0",
"typescript": "^3.9.7"
}
}