-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.73 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
{
"name": "root",
"private": true,
"devDependencies": {
"@types/adm-zip": "^0.4.32",
"@types/archiver": "^3.1.0",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.6",
"@types/env-paths": "^2.1.0",
"@types/express": "^4.17.2",
"@types/fs-extra": "^8.0.1",
"@types/inquirer": "^6.5.0",
"@types/lodash": "^4.14.149",
"@types/material-ui": "^0.21.7",
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.12.3",
"@types/pg": "^7.14.3",
"@types/rimraf": "^3.0.0",
"@types/shelljs": "^0.8.6",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.4.0",
"eslint-config-typescript": "^3.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react-directives": "^1.0.1",
"lerna": "^3.18.4",
"nodemon": "^2.0.1",
"prettier": "^1.19.1",
"typescript": "^3.7.3"
},
"scripts": {
"dev": "lerna run dev --stream --parallel",
"devlock": "cd ./packages/distributed-lock && npm run dev",
"devlockserver": "cd ./packages/distributed-lock-server && npm run dev",
"devlockclient": "cd ./packages/distributed-lock-server/srcClient && npm start",
"buildlockserver": "cd ./packages/distributed-lock-server && npm run createarchive",
"build": "lerna bootstrap && lerna run build",
"publish": "npm run build && lerna publish",
"lint": "lerna run lint --stream --parallel",
"deploy-timesync-server": "cd packages/timesync-server && npm run deploy"
}
}