-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.92 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
69
70
71
72
73
74
75
76
77
78
{
"name": "tree_lidge-game",
"version": "1.0.0",
"private": true,
"type": "commonjs",
"engines": {
"npm": "8.1.0",
"node": "16.13.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@becode/eslint-config": "^0.13.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-unicorn": "^38.0.1",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1"
},
"dependencies": {
"@babel/preset-react": "^7.16.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"axios": "^0.24.0",
"concurrently": "^6.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"leaflet": "^1.7.1",
"leaflet.markercluster": "^1.5.3",
"mongoose": "^6.0.13",
"web-vitals": "^1.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-leaflet": "^3.2.2",
"react-leaflet-markercluster": "^3.0.0-rc1",
"react-router-dom": "^6.0.1",
"react-scripts": "4.0.3",
"styled-components": "^5.3.3",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0"
},
"scripts": {
"server": "cd ./server && npm run server",
"client": "cd ./client && npm run start",
"work": "concurrently \"npm run server\" \"npm run client\"",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"start": "cd server && node server.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"lint-staged": {
"*.json": [
"npx prettier --write"
],
"*.js": [
"npx eslint --fix --cache"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
}
}