-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
64 lines (64 loc) · 2.01 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": "filter-gallery",
"sideEffects": false,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-p watch serve",
"serve": "node server.js",
"build": "run-s build:*",
"build:bundles": "webpack -p",
"build:sass": "node-sass styles --importer node_modules/node-sass-import-once -o dist -r",
"build:serviceworker": "webpack -p --config sw.config.js",
"watch": "run-p watch:*",
"watch:bundles": "webpack --watch --mode none",
"watch:sass": "npm run build:sass && node-sass styles -o dist -r -w",
"watch:serviceworker": "webpack --watch --config sw.config.js -p",
"test": "nyc mocha",
"deploy": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/arcgis-js-api": "^4.22.0",
"@types/jsdom": "^11.12.0",
"@types/mocha": "^5.2.5",
"@types/sinon": "^5.0.5",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"copy-webpack-plugin": "^4.5.2",
"dojo-typings": "^1.11.9",
"express": "^4.16.3",
"jsdom": "^12.2.0",
"mocha": "^5.2.0",
"node-sass": "^4.9.3",
"node-sass-import-once": "^1.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.0.1",
"sinon": "^6.3.5",
"source-map-loader": "^0.2.4",
"ts-node": "^7.0.1",
"tslib": "^1.14.1",
"tslint": "^5.11.0",
"tslint-react": "^3.6.0",
"typescript": "^3.9.7",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"@analytics/aws-pinpoint": "0.4.3",
"@arcgis/core": "^4.23.0-next.20220314",
"@esri/application-base-js": "0.0.31",
"@esri/calcite-components": "^1.0.0-beta.78",
"@esri/configurable-app-components": "^1.5.6",
"@esri/instant-apps-components": "https://github.com/Esri/instant-apps-components.git#10.1-release",
"@esri/telemetry": "^3.2.1",
"analytics": "^0.7.5",
"resize-observer-polyfill": "^1.5.1",
"templates-common-library": "^0.0.30",
"maquette": "^3.3.1",
"rxjs": "^6.3.3"
}
}