-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.83 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": "external-react-app",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"clean-dist": "rm -rf ./dist/*",
"clean-public": "rm -rf ./public/*",
"serve-public": "http-server ./public",
"serve-dist": "http-server ./dist",
"webpack-start-prod": "npm run webpack-prod && open-cli http://localhost:5000 && http-server -p 5000 ./dist",
"webpack-start-dev": "npm run webpack-dev && open-cli http://localhost:3000 && node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --config webpack.config.dev.js",
"webpack-dev": "npm run clean-public && cross-env NODE_ENV=development node ./node_modules/webpack/bin/webpack.js --config webpack.config.dev.js && cp src/index.html public/index.html",
"webpack-prod": "npm run clean-dist && cross-env NODE_ENV=production node ./node_modules/webpack/bin/webpack.js --config webpack.config.prod.js && cp src/index.html dist/index.html",
"webpack-watch": "webpack --watch",
"nodemon": "nodemon --watch src --exec \"npm run eslint-autofix\"",
"test-interactive": "cypress open",
"test": "cypress run --headless",
"eslint": "eslint src",
"eslint-autofix": "eslint src --fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"cypress": "^5.6.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.0",
"http-server": "^0.12.3",
"mini-css-extract-plugin": "^0.11.2",
"nodemon": "^2.0.4",
"open-cli": "^6.0.1",
"react-hot-loader": "^4.12.21",
"style-loader": "^1.2.1",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@emotion/core": "^10.0.35",
"@material-ui/core": "^4.11.0",
"@material-ui/lab": "^4.0.0-alpha.56",
"axios": "^0.20.0",
"i18next": "^19.7.0",
"i18next-locize-backend": "^4.1.8",
"leaflet": "^1.7.1",
"leaflet.heat": "^0.2.0",
"lodash": "^4.17.20",
"lodash-webpack-plugin": "^0.11.5",
"loglevel": "^1.7.0",
"moment": "^2.29.0",
"pouchdb": "^7.2.2",
"pouchdb-find": "^7.2.2",
"qs": "^6.9.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-i18next": "^11.7.3",
"react-json-view": "^1.19.1",
"uuid": "^8.3.0"
}
}