-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
90 lines (90 loc) · 2.58 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
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "nearby-javascript",
"version": "1.0.2",
"devDependencies": {
"@types/arcgis-js-api": "~4.14.0",
"@types/jest": "^24.0.25",
"@types/jsdom": "~12.2.4",
"@types/nprogress": "~0.2.0",
"@types/reach__router": "~1.3.0",
"@types/react": "~16.9.19",
"@types/react-dom": "~16.9.5",
"@types/react-router-dom": "~5.1.3",
"@types/sinon": "~7.5.1",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"clean-webpack-plugin": "~3.0.0",
"copy-webpack-plugin": "~5.1.1",
"css-loader": "~3.4.2",
"html-loader": "0.5.5",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "~3.2.0",
"husky": "~4.2.3",
"jest": "^25.1.0",
"keyboardjs": "2.5.1",
"lint-staged": "~10.0.7",
"mini-css-extract-plugin": "~0.9.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "~5.0.3",
"postcss-loader": "3.0.0",
"postcss-url": "8.0.0",
"prettier": "~1.19.1",
"rebound": "0.1.0",
"resolve-url-loader": "2.3.0",
"sass-loader": "7.1.0",
"sinon": "~8.1.1",
"style-loader": "~1.1.3",
"terser-webpack-plugin": "~2.3.5",
"ts-jest": "^25.2.0",
"ts-loader": "~6.2.1",
"tslib": "~1.10.0",
"typescript": "~3.7.5",
"webpack": "~4.41.6",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "~3.3.11",
"webpack-dev-server": "~3.10.3",
"webpack-pwa-manifest": "~4.2.0",
"workbox-webpack-plugin": "~5.0.0"
},
"license": "Apache-2.0",
"scripts": {
"start": "webpack-dev-server --history-api-fallback --mode development --open",
"build": "webpack --mode production",
"serve": "webpack-dev-server --history-api-fallback --mode production --open --https --compress",
"prettier": "prettier --write \"src/**/*.ts?(x)\"",
"lint": "tslint --fix \"src/**/*.ts?(x)\"",
"test": "jest"
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"dependencies": {
"@arcgis/webpack-plugin": "~4.14.1",
"@emotion/core": "~10.0.27",
"@emotion/is-prop-valid": "~0.8.6",
"@emotion/styled": "~10.0.27",
"@reach/router": "~1.3.1",
"dotenv-webpack": "1.7.0",
"nprogress": "0.2.0",
"react": "~16.12.0",
"react-dom": "~16.12.0",
"react-media": "~1.10.0",
"react-router-dom": "~5.1.2",
"react-use": "~13.24.0",
"rmwc": "~5.7.2",
"typeface-roboto": "~0.0.75",
"webpack-material-design-icons": "0.1.0"
},
"arcgis": {
"type": "jsapi"
}
}