-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 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
{
"name": "simple-express-app",
"description": "This project is a simple boilerplate template to get started with test-driven JavaScript app development.",
"version": "1.0.0",
"main": "app/main.js",
"scripts": {
"start": "node app/main.js",
"test": "npm run jest",
"test:e2e": "jest --runInBand e2e_tests/*.test.js",
"jest": "jest --coverage app/__tests__/*.test.js",
"prettier": "prettier --write app/**/*.js app/**/__{tests,mocks}__/*.js e2e_tests/*.js !app/statistics.js"
},
"dependencies": {
"body-parser": "^1.15.0",
"cookie-parser": "^1.4.0",
"debug": "^2.2.0",
"dotenv": "^6.0.0",
"express": "^4.14.0",
"fs": "^0.0.1-security",
"json-groupby": "^1.1.0",
"morgan": "^1.7.0",
"mysql2": "^1.6.1",
"pug": "^2.0.0-beta6",
"sequelize": "^4.38.0",
"serve-favicon": "^2.3.0",
"winston": "^3.0.0"
},
"devDependencies": {
"jest": "^21.2.1",
"prettier": "^1.9.1",
"supertest": "~3.0.0"
},
"engines": {
"node": "~6.10.x"
},
"jest": {
"testEnvironment": "node",
"verbose": true
},
"prettier": {
"singleQuote": true
}
}