-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"name": "interview",
"version": "1.0.0",
"description": "A video interviewing platform",
"main": "app.js",
"scripts": {
"start": "node app.js",
"server": "nodemon app.js",
"frontend-install": "npm install --prefix frontend",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hwkcode/interView.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hwkcode/interView/issues"
},
"homepage": "https://github.com/hwkcode/interView#readme",
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.1",
"@mui/styled-engine-sc": "^5.4.2",
"aws-sdk": "^2.1093.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.2",
"concurrently": "^7.0.0",
"dotenv": "^16.0.0",
"ejs": "^3.1.6",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.6",
"multer": "^1.4.4",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"react-helmet": "^6.1.0",
"styled-components": "^5.3.3",
"validator": "^13.7.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}