-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "residence-heatmap",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"axios": "^0.21.1",
"concurrently": "^6.0.2",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.17.1",
"json-server": "^0.16.3",
"json-server-reset": "^1.3.0",
"leaflet": "^1.7.1",
"leaflet.heat": "^0.2.0",
"path": "^0.12.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"web-vitals": "^1.0.1"
},
"scripts": {
"react:start": "react-scripts start",
"dev": "concurrently \"npm run react:start\" \"npm run db\"",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start": "npm run db:init && node server.js",
"db": "npm run db:init && json-server data/db.json --routes jsonServerRoutes.json --port 3001 --middlewares ./node_modules/json-server-reset",
"db:init": "cp data/initialdb.json data/db.json",
"server:watch": "nodemon server.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {}
}