forked from vuquanh/event-page
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.27 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
{
"name": "event-page",
"version": "1.0.0",
"description": "MERN event app",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\" ",
"data:import": "node backend/seeder.js",
"data:destroy": "node backend/seeder.js -d",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/vuquanh/event-page.git"
},
"author": "Kal Academy",
"license": "ISC",
"bugs": {
"url": "https://github.com/vuquanh/event-page/issues"
},
"homepage": "https://github.com/vuquanh/event-page#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^8.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.2.0",
"mongoose": "^7.0.4",
"nodemon": "^2.0.22",
"path": "^0.12.7",
"react-redux": "^8.0.5",
"react-router-bootstrap": "^0.26.2",
"redux": "^4.2.1",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.2"
}
}