-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 880 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
{
"name": "sample-http",
"version": "0.0.1",
"dependencies": {
"axios": "^0.17.1",
"firebase-admin": "^5.5.0",
"redux": "^3.7.2",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-inline-json-import": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-node7": "^1.5.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.0",
"prettier": "^1.4.4"
},
"scripts": {
"precommit": "lint-staged",
"build": "rm -rf dist && babel src --out-dir=dist && cp src/api/config.json dist/api/config.json",
"test": "babel-node scripts/run-test",
"7zip": "7z a question-survey-101.zip dist index.js package.json",
"buildnzip": "yarn build && yarn 7zip"
},
"lint-staged": {
"*.js": [
"prettier --write --no-semi --print-width 120",
"git add"
]
}
}