-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "node_try",
"version": "1.0.0",
"description": "NodeJS + MongoDB + ReactJS",
"main": "startup.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-nd": "nodemon --env-file=.env.local startup.js",
"start": "node --env-file=.env.local startup.js",
"start:docker": "node --env-file=.env startup.js",
"lint": "pnpm eslint",
"lint:fix": "pnpm eslint --fix"
},
"keywords": [],
"author": "sleepergoose",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.6.0",
"eslint": "^9.6.0",
"globals": "^15.6.0",
"nodemon": "^3.1.4"
},
"dependencies": {
"@braintree/sanitize-url": "^7.1.0",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.3.1",
"express-validator": "^7.1.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongodb": "^6.7.0"
}
}