-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.89 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
{
"name": "project-3-sequelize-starter-code",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"lint": "eslint --quiet . && cd client && npm run lint",
"fix": "eslint --fix . && cd client && npm run fix",
"seed": "node scripts/seedDB.js",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build && npm run seed"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@admin-bro/express": "^3.1.0",
"@admin-bro/mongoose": "^1.1.0",
"@material-ui/core": "^4.11.2",
"admin-bro": "^3.3.1",
"admin-bro-expressjs": "^2.1.1",
"axios": "^0.21.1",
"bcryptjs": "2.4.3",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.3",
"compression": "^1.7.4",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.0",
"express-formidable": "^1.2.0",
"express-jwt": "^6.0.0",
"express-session": "^1.17.1",
"gridfs": "^1.0.0",
"gridfs-stream": "^1.1.1",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongoose": "^5.11.9",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.2.0",
"react-player": "^2.8.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.16.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0"
}
}