-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "noteapp",
"version": "1.0.0",
"description": "A simple note taking app to practice building APIs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test:feature": "LOG_LEVEL=FATAL ./node_modules/.bin/cucumber-js --exit ./tests/features/*",
"test:coverage": "LOG_LEVEL=FATAL istanbul cover node_modules/.bin/_mocha ./tests/unit/*",
"lint": "./node_modules/.bin/eslint ."
},
"dependencies": {
"ajv": "^6.5.2",
"body-parser": "^1.18.3",
"bunyan": "^1.8.12",
"express": "^4.16.3",
"knex": "^0.15.2",
"pg": "^7.4.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.0.0",
"cucumber": "^4.2.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.11.0",
"faker": "^4.1.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"mock-knex": "^0.4.0",
"rewire": "^4.0.1",
"sinon": "^4.5.0",
"sinon-chai": "^2.14.0"
},
"author": "",
"license": "ISC"
}