-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
43 lines (43 loc) · 1.4 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
{
"name": "interactive-legend",
"version": "0.0.1",
"description": "Web Application which includes an Interactive Legend to filter features on a web map.",
"author": "Ryan Libed <[email protected]>",
"license": "SEE LICENSE IN license.txt",
"main": "dist/index.html",
"keywords": [
"Esri",
"esrijs",
"ArcGIS",
"gis",
"JavaScript",
"TypeScript"
],
"devDependencies": {
"@esri/application-base-js": "0.0.31",
"@esri/configurable-app-components": "^1.3.5",
"templates-common-library": "0.0.4",
"@types/arcgis-js-api": "^4.18.0",
"autoprefixer": "^6.3.6",
"copy-dir": "^1.3.0",
"dojo-typings": "^1.11.11",
"fs-extra": "^9.0.1",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.2",
"postcss-normalize-charset": "^1.1.0",
"tar": ">=4.4.2",
"tslint": "^5.11.0",
"typescript": "^3.9.5",
"lodash": ">=4.17.13",
"tslib": "^2.0.0"
},
"scripts": {
"start": "node build/buildOutput.js && npm run build:ts && npm run build:sass && npm-run-all --parallel watch:ts watch:sass",
"build": "node build/buildOutput.js && npm run build:sass && npm run build:ts",
"build:ts": "tsc -p tsconfig.prod.json",
"build:sass": "node-sass styles/Main.scss dist/styles/Main.css",
"watch:ts": "tsc -p tsconfig.prod.json --watch",
"watch:sass": "node-sass styles/Main.scss dist/styles/Main.css --watch",
"deploy": "npm run build"
}
}