-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.9 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
{
"name": "awesome",
"version": "0.0.1",
"devDependencies": {
"@theintern/istanbul-loader": "^1.0.0-beta.2",
"@types/arcgis-js-api": "^4.7.0",
"@types/sinon": "^5.0.1",
"appcache-webpack-plugin": "^1.4.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "4.5.1",
"css-loader": "^0.28.11",
"html-loader": "^0.5.5",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.1.0",
"husky": "^0.14.3",
"intern": "^4.0.0-rc.1",
"lint-staged": "^7.1.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "4.8.1",
"optimize-css-assets-webpack-plugin": "^4.0.1",
"prettier": "^1.12.1",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.0.3",
"sinon": "^6.0.0",
"style-loader": "0.21.0",
"ts-loader": "^4.1.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.12.0",
"tslint-eslint-rules": "^5.1.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.8.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.0",
"webpack-cli": "^3.0.7",
"webpack-dev-server": "^3.1.1",
"webpack-pwa-manifest": "^3.6.2",
"workbox-webpack-plugin": "^3.2.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.8.1",
"calcite-web": "github:Esri/calcite-web#v1.0.1",
"tslib": "^1.9.2"
},
"arcgis": {
"type": "jsapi"
}
}