-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "week-7-bfop",
"version": "1.0.0",
"description": "Week 7 REST API project.",
"main": "index.js",
"scripts": {
"testDb": "NODE_ENV=test tape 'tests/db.test.js' | tap-spec",
"testServer": "NODE_ENV=test tape 'tests/server.test.js' | tap-spec",
"test": "NODE_ENV=test tape 'tests/*' | tap-spec",
"dev": "nodemon index.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac20/week-7-BFOP.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac20/week-7-BFOP/issues"
},
"homepage": "https://github.com/fac20/week-7-BFOP#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.3.2"
},
"devDependencies": {
"eslint": "^7.7.0",
"nock": "^13.0.4",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^5.0.1"
}
}