-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.48 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
53
54
55
{
"name": "gameshow",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:4000",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.16.4",
"file-saver": "^2.0.5",
"jsonwebtoken": "^8.5.1",
"literallycanvas": "^0.5.2",
"mongoose": "^5.7.5",
"postmark": "^3.0.14",
"react-swipeable": "^7.0.0",
"react-swipeable-views": "^0.14.0",
"styled-components": "^5.3.6",
"views": "^1.0.2"
},
"engines": {
"node": "16.x"
},
"scripts": {
"build": "cd client && npm run build",
"install-client": "cd client && npm install --force",
"heroku-postbuild": "npm run install-client && npm run build",
"start": "npm install && node index.js",
"dev": "cd client && npm start",
"test": "cd server && jest --runInBand --detectOpenHandles --forceExit"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"jest": "^29.2.2"
}
}