-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "nodejs-integration-testing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development nodemon src/server.js",
"test": "NODE_ENV=test mocha",
"prettier":
"prettier --write --print-width 100 --trailing-comma es5 --no-semi --single-quote '**/*.{js,json}'",
"lint": "eslint src test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefanwille/nodejs-integration-testing.git"
},
"keywords": [],
"author": "Stefan Wille",
"license": "ISC",
"bugs": {
"url": "https://github.com/stefanwille/nodejs-integration-testing/issues"
},
"homepage": "https://github.com/stefanwille/nodejs-integration-testing#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"prettier": "^1.7.0",
"supertest": "^3.0.0"
},
"dependencies": {
"body-parser": "^1.16.1",
"config": "^1.25.1",
"express": "^4.14.1",
"morgan": "^1.8.1",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"ramda": "^0.23.0",
"sequelize": "^3.30.2",
"winston": "^2.3.1"
}
}