-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.71 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
{
"homepage": "http://boernard.github.io/map-app",
"name": "map-app",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/webpack --config webpack.dev.js",
"build-prod": "./node_modules/.bin/webpack --config webpack.prod.js",
"start": "export NODE_ENV=development && yarn run build && node server.js",
"clean": "rm -rf ./node_modules",
"predeploy": "yarn run build-prod",
"deploy": "gh-pages -d dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/lodash": "^4.14.149",
"@types/mapbox-gl": "^1.9.0",
"dotenv-webpack": "^1.7.0",
"express": "^4.16.3",
"lodash": "^4.17.15",
"mapbox-gl": "^1.9.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-mapbox-gl": "^4.8.3",
"seamless-scroll-polyfill": "^1.0.9"
},
"devDependencies": {
"@testing-library/react": "^9.3.2",
"@types/react": "^16.9.15",
"@types/react-dom": "^16.9.4",
"add-asset-html-webpack-plugin": "^3.1.3",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"source-map-loader": "^0.2.3",
"style-loader": "^1.1.3",
"ts-loader": "^4.5.0",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2",
"webpack-merge": "^4.2.2"
}
}