-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "rvc_backend",
"version": "1.0.0",
"description": "This is the backend code for the ForkBook application, you can find the latest deploy here: forkbook.co",
"main": "index.js",
"scripts": {
"test": "cross-env DB_ENV=testing jest --watch --verbose",
"coverage": "cross-env DB_ENV=testing jest --coverage",
"start": "node index.js",
"server": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LABS-EU3/rvc_backend.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/LABS-EU3/rvc_backend/issues"
},
"homepage": "https://github.com/LABS-EU3/rvc_backend#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.4",
"knex-cleaner": "^1.3.0",
"pg": "^7.14.0"
},
"devDependencies": {
"cross-env": "^6.0.3",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}