forked from Esri/nearby-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.64 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.0",
"devDependencies": {
"@types/arcgis-js-api": "~4.11.0",
"@types/jsdom": "^12.2.3",
"@types/nprogress": "0.0.29",
"@types/reach__router": "^1.2.4",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/react-router-dom": "^4.3.2",
"@types/sinon": "^7.0.11",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^2.1.1",
"html-loader": "^0.5.5",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.1.0",
"husky": "^1.3.1",
"intern": "^4.4.2",
"keyboardjs": "^2.5.1",
"lint-staged": "^8.1.5",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "~4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"postcss-url": "^8.0.0",
"prettier": "^1.17.0",
"rebound": "^0.1.0",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.1.0",
"sinon": "^7.3.2",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.1",
"tslib": "^1.9.1",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.1.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.4",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1",
"webpack-pwa-manifest": "^4.0.0",
"workbox-webpack-plugin": "^4.3.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": "webpack --config=webpack.tests.config.js --mode=development && intern"
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"dependencies": {
"@arcgis/webpack-plugin": "~4.11.0",
"@emotion/core": "^10.0.10",
"@emotion/is-prop-valid": "^0.7.3",
"@emotion/styled": "^10.0.10",
"@reach/router": "^1.2.1",
"dotenv-webpack": "^1.7.0",
"nprogress": "^0.2.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-media": "^1.9.2",
"react-router-dom": "^5.0.0",
"react-use": "^8.1.3",
"rmwc": "^5.3.1",
"terser-webpack-plugin": "^1.2.2",
"typeface-roboto": "^0.0.54",
"webpack-material-design-icons": "^0.1.0"
},
"arcgis": {
"type": "jsapi"
}
}