forked from rohan-paul/material-ui-table-with-node-mongodb-running-in-GCP-also-the-source-code-for-GCP-Blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·52 lines (52 loc) · 1.51 KB
/
package.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.51 KB
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
{
"name": "server",
"version": "1.0.0",
"engines": {
"node": "10.15.3"
},
"description": "",
"homepage": "https://mui-table-3.appspot.com/employee",
"main": "index.js",
"scripts": {
"start": "nodemon index.js ",
"server": "nodemon index.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build",
"fix-code": "prettier-eslint --write 'src/**/*.{js,jsx}' ",
"fix-styles": "prettier-stylelint --write 'src/**/*.{css,scss}' "
},
"author": "",
"license": "ISC",
"dependencies": {
"adm-zip": "^0.4.13",
"async": "^2.6.1",
"body-parser": "^1.18.3",
"buffer-to-stream": "^1.0.0",
"client-sessions": "^0.8.0",
"concurrently": "^4.1.0",
"cookie-session": "^2.0.0-beta.3",
"dotenv": "^6.2.0",
"eslint": "5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"express": "^4.16.4",
"express-request-id": "^1.4.1",
"jquery": "^3.3.1",
"lodash": "^4.17.11",
"method-override": "^3.0.0",
"mocha": "^5.2.0",
"mongoose": "^5.4.11",
"mongoose-autopopulate": "^0.9.1",
"mongoose-paginate": "^5.0.3",
"mongoose-validator": "^2.1.0",
"morgan": "^1.9.1",
"nodemon": "^1.18.10",
"pm2": "^3.2.9",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"prettier-stylelint": "^0.4.2"
}
}