-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.74 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "cinema-app",
"version": "0.1.0",
"description": "A website for Theaters",
"private": true,
"main": "server.js",
"author": {
"name": "Kallyas",
"email": "[email protected]",
"url": "https://kallyasmedia.tech"
},
"license": "MIT",
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"concurrently": "^3.6.1",
"cors": "^2.8.5",
"express": "^4.21.1",
"gravatar": "^1.8.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.9",
"multer": "^1.4.3",
"node-fetch": "^3.2.10",
"nodemailer": "^6.6.3",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-scripts": "5.0.0",
"redis": "^3.1.2",
"validator": "^13.7.0",
"webpack-sources": "^1.4.3"
},
"scripts": {
"setup": "npm install && npm run setup-frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"start": "node server.js",
"server": "nodemon server.js",
"frontend": "cd ./frontend && npm start",
"setup-frontend": "cd frontend && npm install",
"build-frontend": "npm run setup-frontend && cd frontend && npm run build",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm run build-frontend"
},
"devDependencies": {
"nodemon": "^1.19.4"
},
"engines": {
"node": "^12.18.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}