-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "new-zealand-wars",
"version": "1.0.0",
"description": "A map of the New Zealand Wars",
"main": "index.js",
"repository": "git@github.com:nzherald/land-wars-map.git",
"author": "Chris Knox <chris.knox@nzherald.co.nz>",
"license": "MIT",
"private": true,
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.10",
"markdown-loader": "^2.0.2",
"node-sass": "^4.9.0",
"npm-run-all": "^4.1.3",
"postcss-loader": "^2.1.5",
"raw-loader": "^0.5.1",
"sass-loader": "^7.0.1",
"showdown": "^1.8.6",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"yml-loader": "^2.1.0"
},
"scripts": {
"start": "webpack-dev-server",
"build": "webpack -p",
"watch": "webpack --watch",
"deploy": "aws --region ap-southeast-2 s3 cp dist/ s3://s3.newsapps.nz/apps/ --acl=public-read --recursive --cache-control max-age=60,public",
"dep": "npm-run-all clean build deploy",
"clean": "rm -rf dist"
}
}