-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1012 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
37
38
39
40
41
42
{
"name": "pallete-picker-back-end",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest --forceExit",
"devTest": "jest --watchAll --coverage",
"start": "node server.js",
"dev": "nodemon server.js",
"coveralls": "jest --coverage --forceExit && cat ./tests/coverage/lcov.info | coveralls"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"knex": "^0.19.5",
"nodemon": "^1.19.1",
"pg": "^7.12.1",
"body-parser": "^1.17.1",
"jest": "^24.5.0",
"supertest": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-jest": "^24.5.0",
"coveralls": "^3.0.6",
"nodemon": "^1.19.1"
},
"jest": {
"collectCoverageFrom": [
"app.js",
"!backend/knexfile.js",
"!backend/mockProjects.js",
"!backend/seeds/test/*.js"
]
},
"description": ""
}