-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 829 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 829 Bytes
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
{
"name": "@atpls/application",
"private": true,
"scripts": {
"setup": "npm i & (cd client && npm i) && (cd server & npm i)",
"start": "npm run start:client",
"start:client": "cd client && npm start",
"start:server": "cd client && npm start",
"build": "node scripts/build.js",
"download": "node scripts/download",
"format": "prettier --write \"*/{src,scripts}/**/*.js?(x)\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"chroma-js": "^1.4.0",
"lodash": "^4.17.11",
"node-wget": "^0.4.3",
"wget-improved": "^3.0.2"
},
"devDependencies": {
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3"
}
}