forked from alexisjcarr/codeforbcs-test-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1021 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
{
"name": "codeforbcs-test-backend",
"version": "1.0.0",
"description": "A simple backend that allows for user registration and login to help Code For BCS members learn React",
"main": "index.js",
"scripts": {
"preinstall": "npm install pm2 -g",
"start": "pm2-runtime index.js -i max",
"server": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexisjcarr/codeforbcs-test-backend.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexisjcarr/codeforbcs-test-backend/issues"
},
"homepage": "https://github.com/alexisjcarr/codeforbcs-test-backend#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.21.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.3",
"knex-cleaner": "^1.3.0",
"pm2": "^3.5.1",
"sqlite3": "^4.1.0"
},
"devDependencies": {
"nodemon": "^1.19.2"
}
}