-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "timesheets-api",
"main": "./api/server.js",
"description": "Timesheet API backend for React Redux training labs",
"version": "1.0.0",
"scripts": {
"precommit": "pretty-quick --staged",
"now-build": "cross-env NODE_ENV=production npm run seed",
"seed": "node scripts/init",
"prestart": "npm run seed",
"start": "cross-env NODE_ENV=development node api/server.js",
"now-start": "cross-env NODE_ENV=production node api/server.js",
"debug": "node-debug api/server.js"
},
"dependencies": {
"axios": "^0.18.0",
"better-console": "^1.0.1",
"boom": "^7.3.0",
"classnames": "^2.2.6",
"es6-promise": "^4.2.5",
"extend": "^3.0.2",
"flux": "^3.1.3",
"font-awesome": "^4.3.0",
"good": "^8.1.1",
"good-console": "^7.1.0",
"hapi": "^17.8.1",
"hapi-auth-basic": "^5.0.0",
"hapi-auth-cookie": "^9.1.0",
"hoek": "^6.1.2",
"jade": "^1.9.2",
"joi": "^14.3.1",
"keymirror": "^0.1.1",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"nedb": "^1.1.1",
"nprogress": "^0.2.0",
"object-assign": "^4.1.1",
"open": "0.0.5",
"q": "^1.2.0",
"react": "^16.7.0",
"react-router": "^4.3.1",
"react-select": "^2.2.0",
"tether": "^1.4.5",
"through2": "^3.0.0",
"tracer": "^0.9.8",
"vision": "^5.4.4",
"winston": "~3.1.0"
},
"devDependencies": {
"cross-env": "~5.2.0",
"husky": "~1.3.1",
"prettier": "~1.15.3",
"pretty-quick": "~1.8.0"
}
}