-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.75 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "cdap-project-management-system",
"version": "0.1.0",
"private": true,
"main": "server.js",
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^34.0.0",
"@ckeditor/ckeditor5-react": "^5.0.0",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"aws-sdk": "^2.1135.0",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"concurrently": "^7.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"font-awesome": "^4.7.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.7.0",
"mongoose": "^6.4.2",
"multer": "^1.4.4",
"multer-gridfs-storage": "^5.0.2",
"nexmo": "^2.9.1",
"node-fetch": "^3.2.4",
"nodemailer": "^6.7.3",
"nunjucks": "^3.2.3",
"react-password-checklist": "^1.3.3",
"reactjs-input-validator": "^0.16.4",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "node server.js",
"concurrent": "concurrently \"npm run server\" \"npm start --prefix client\" \"npm run build:css --prefix client\" ",
"server": "nodemon server.js --ignore client",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"engines": {
"node": "16.14.2"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"nodemon": "^2.0.18"
}
}