forked from antoniojps/kind-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
55
56
57
58
59
{
"name": "kind-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"eslint": "eslint src",
"clean": "rm -rf build && mkdir build",
"dev": "cross-env NODE_ENV=development nodemon --exec babel-node src/server.js",
"build": "cross-env NODE_ENV=production npm run clean && babel src --out-dir build",
"start": "cross-env NODE_ENV=production node build/server.js",
"precommit": "npm run eslint",
"deploy": "now && now alias"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.4.0",
"@babel/runtime": "^7.4.2",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"husky": "^1.3.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^10.0.1",
"eslint": "^4.2.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"nodemon": "^1.18.10",
"prettier": "1.16.4"
},
"prettier": {
"semi": true,
"trailingComma": "none",
"jsxBracketSameLine": false,
"singleQuote": false,
"tabWidth": 2,
"printWidth": 80
}
}