-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 947 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 947 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
33
34
35
{
"name": "flickbase",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"server": "nodemon server/server.js",
"client": "npm run dev --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"accesscontrol": "^2.2.1",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"concurrently": "^9.1.2",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-mongo-sanitize": "^2.2.0",
"express-xss-sanitizer": "^2.0.0",
"http-status": "^2.1.0",
"jsonwebtoken": "^9.0.2",
"mailgen": "^2.0.29",
"mongoose": "^8.10.1",
"nodemailer": "^6.10.0",
"nodemon": "^3.1.9",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"punycode-url": "^1.0.0",
"validator": "^13.12.0"
}
}