-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "car-show-ballot-box-api",
"version": "0.0.1",
"description": "API for the Waukesha Old Car Club car show ballot box",
"main": "index.js",
"watch": {
"lint": {
"patterns": [
"src",
"test"
],
"extensions": "js"
},
"test": {
"patterns": [
"src",
"test"
],
"extensions": "js"
}
},
"scripts": {
"lint": "eslint --ext .js src test",
"test": "mocha test/**/*.spec.js",
"start": "node index.js"
},
"author": "Ken Sodemann <[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "~1.18.3",
"express": "~4.16.4",
"jsonwebtoken": "~8.3.0",
"passport": "~0.4.0",
"passport-local": "~1.0.0",
"pg": "~7.6.0"
},
"devDependencies": {
"chai": "~4.2.0",
"eslint": "~5.8.0",
"eslint-config-standard": "~12.0.0",
"eslint-plugin-import": "~2.14.0",
"eslint-plugin-node": "~8.0.0",
"eslint-plugin-promise": "~4.0.1",
"eslint-plugin-standard": "~4.0.0",
"mocha": "~5.2.0",
"proxyquire": "~2.1.0",
"sinon": "~7.1.1",
"supertest": "~3.3.0"
}
}