forked from wilsongis/Montgomery-County-GeoPortal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.62 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
{
"name": "geoportal3",
"version": "3.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "yarn run assets:dev && npm-run-all --parallel watch:*",
"build":
"NODE_ENV=production yarn run assets:prod && npm-run-all prod:* && yarn run critical && yarn run pwa",
"assets:dev": "node build/copy.js",
"assets:prod": "node build/clean.js",
"critical": "node build/critical.css.js",
"prod:postcss": "postcss app/main.css -m -o dist/bundle.css",
"prod:webpack": "webpack --mode production",
"pwa": "node build/sw.js",
"watch:assets": "onchange 'app/assets/**/*' -- yarn run assets:dev",
"watch:postcss": "postcss app/main.css -m -o dist/bundle.css -w",
"watch:server": "browser-sync start --server 'dist' --files 'dist'",
"watch:webpack": "webpack --mode development --progress --watch"
},
"author": "Tobin Bradley",
"license": "MIT",
"dependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"chartist": "^0.11.0",
"format-number": "^3.0.0",
"lodash.debounce": "^4.0.8",
"mapbox-gl": "^0.44.1",
"normalize.css": "^8.0.0",
"promise-polyfill": "^7.1.0",
"vue": "^2.5.16",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.23.6",
"critical": "^1.2.0",
"cssnano": "^3.10.0",
"npm-run-all": "^4.1.2",
"onchange": "^3.3.0",
"postcss-cli": "^5.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"shelljs": "^0.8.1",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"workbox-build": "^3.0.0"
}
}