-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 873 Bytes
/
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
{
"name": "tdi-exchange",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"eslint": "5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-security": "^1.4.0",
"husky": "^1.3.1",
"lerna": "^3.4.3",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0"
},
"scripts": {
"start": "lerna run start --parallel",
"build:web": "cd ./packages/web && yarn run build",
"build:server": "cd ./packages/server && yarn run build",
"new-version": "lerna version --conventional-commits --yes",
"diff": "lerna diff"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}