-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 865 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 865 Bytes
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
{
"name": "t-tracker-server",
"version": "2.0.0",
"description": "a web-based app for tracking t self-injections",
"main": "index.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "leon chisholm",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"classnames": "^2.3.1",
"concurrently": "^6.2.1",
"express": "^4.17.1",
"express-session": "^1.17.2",
"gravatar": "^1.8.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.1.1",
"mongoose": "^6.0.2",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"path": "^0.12.7",
"pg": "^8.7.1",
"validator": "^13.6.0"
}
}