-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 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
{
"name": "maps-app-javascript",
"version": "1.0.2",
"devDependencies": {
"@types/arcgis-js-api": "~4.11.0",
"@types/sinon": "^7.0.11",
"appcache-webpack-plugin": "^1.4.0",
"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",
"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",
"prettier": "^1.17.0",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.1.0",
"sinon": "^7.3.2",
"style-loader": "0.23.1",
"terser-webpack-plugin": "^1.2.2",
"ts-loader": "^5.3.3",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.4",
"webpack": "^4.30.0",
"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": {
"precommit": "lint-staged",
"start": "webpack-dev-server --mode development --open",
"build": "webpack --mode production",
"serve": "webpack-dev-server --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"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"dependencies": {
"@arcgis/webpack-plugin": "^4.11.0",
"calcite-web": "github:Esri/calcite-web#v1.2.5",
"tslib": "^1.9.2"
},
"arcgis": {
"type": "jsapi"
}
}