-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.62 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
60
61
62
63
64
65
66
67
68
{
"name": "chrappjs",
"version": "1.0.0",
"description": "Secret Santa app",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tape test/runner.js | tap-spec",
"start:watch": "nodemon src/index.js",
"coverage": "nyc npm test && nyc report --reporter=html && nyc report --reporter=text-lcov > coverage.lcov",
"db:seed": "node database/db_build.js --seed",
"db:build": "node database/db_build.js",
"client": "cd client && npm start",
"dev": "concurrently --kill-others-on-fail \"npm run client\" \"nodemon src/index.js\""
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.17.2",
"cookie-session": "^2.0.0-beta.3",
"env2": "^2.2.0",
"express": "^4.15.4",
"express-handlebars": "^3.0.0",
"jsonwebtoken": "^8.1.1",
"pg": "^7.1.2",
"pg-promise": "^6.5.1",
"serve-favicon": "^2.4.3"
},
"devDependencies": {
"codecov": "^2.3.0",
"concurrently": "^3.5.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"nodemon": "^1.11.0",
"nyc": "^11.1.0",
"supertest": "^3.0.0",
"supertest-session": "^3.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"nyc": {
"watermarks": {
"lines": [
80,
95
],
"functions": [
80,
95
],
"branches": [
80,
95
],
"statements": [
80,
95
]
}
}
}