-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
39
40
41
42
43
44
45
46
47
{
"name": "demer-fmcms",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "20.16.0"
},
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && npm run start",
"server-install": "npm install",
"client-install": "cd client && npm install",
"client-test": "cd client && npm run test",
"install-all": "concurrently \"npm run server-install\" \"npm run client-install\"",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"lint": "eslint .",
"lint-client": "cd client && npm run lint",
"lint-all": "concurrently \"npm run lint\" \"npm run lint-client\""
},
"keywords": [],
"author": "Demer",
"license": "ISC",
"dependencies": {
"all": "0.0.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.2",
"concurrently": "^6.2.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.19.2",
"generate-password": "^1.6.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.3",
"multer": "^1.4.2",
"nodemailer": "^6.6.2",
"react-to-print": "^2.13.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^9.9.1",
"globals": "^15.9.0",
"nodemon": "^3.1.4"
}
}