-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "helpdesk",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server",
"server": "nodemon start",
"client": "npm start --prefix frontside",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontside && npm run build --prefix frontside"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@tinymce/tinymce-react": "^3.10.3",
"babel-polyfill": "^6.26.0",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.6.0",
"config": "^3.3.4",
"email-templates": "^8.0.3",
"express": "^4.17.1",
"express-validator": "^6.9.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.15",
"mongoose-float": "^1.0.4",
"mongoose-paginate-v2": "^1.3.17",
"nodemailer": "^6.4.17",
"pug": "^3.0.0",
"randomstring": "^1.1.5",
"react-autocomplete": "^1.8.1",
"react-bootstrap": "^1.5.1",
"react-quill": "^1.3.5",
"react-render-html": "^0.6.0",
"request": "^2.88.2",
"sass": "^1.32.8",
"uuid": "^3.4.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.7",
"webpack-cli": "^4.7.0"
}
}