-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 KB
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
50
51
{
"name": "merchos-be",
"version": "0.2.1",
"description": "store back-end ",
"main": "index.js",
"scripts": {
"server": "cross-env NODE_ENV=development nodemon index.js",
"test": "cross-env NODE_ENV=testing knex seed:run && jest --watch",
"start": "node index.js",
"coverage": "cross-env NODE_ENV=testing jest --coverage --detectOpenHandles --forceExit || true",
"git-coverage": "cross-env NODE_ENV=test jest --coverage --detectOpenHandles --forceExit || true"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/__tests__/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lambda-School-Labs/merchos-be.git"
},
"author": "Mercho-team",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lambda-School-Labs/merchos-be/issues"
},
"homepage": "https://github.com/Lambda-School-Labs/merchos-be#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"codeclimate-test-reporter": "^0.5.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.8",
"knex-cleaner": "^1.3.0",
"morgan": "^1.9.1",
"pg": "^7.18.1"
},
"devDependencies": {
"cross-env": "^7.0.0",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}