-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 952 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
33
34
35
36
{
"name": "vote",
"version": "0.11.0",
"private": true,
"scripts": {
"start:dev": "NODE_ENV=development node ./bin/www",
"start": "NODE_ENV=production node ./bin/www",
"load:dev": "NODE_ENV=development node ./load.js",
"load": "NODE_ENV=production node ./load.js",
"test": "NODE_ENV=test jest"
},
"dependencies": {
"cookie-parser": "^1.4.3",
"dotenv": "^6.2.0",
"ejs": "^2.5.7",
"express": "^4.16.0",
"faker": "^4.1.0",
"http-errors": "^1.6.2",
"morgan": "^1.9.0",
"nodemon": "^1.18.7",
"pg": "^7.7.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.41.2",
"sqlite": "^3.0.0"
},
"devDependencies": {
"eslint": "^5.10.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",
"jest": "^23.6.0",
"supertest": "^3.3.0"
}
}