-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "foss4g-demos",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/ubilabs/foss4g-demos.git"
},
"precommit": {
"run": "test",
"template": ".gitcommit.template"
},
"scripts": {
"build": "npm run clean && npm run copy-files && NODE_ENV=production webpack -p",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"clean": "rm -rf build/*",
"copy-files": "cp -R src/static build/static",
"deploy": "gcloud-storage-upload -s 'foss4g-demos' -p build",
"postversion": "npm run changelog && git add CHANGELOG.md && git commit --amend --no-edit",
"preversion": "npm test",
"start": "npm run clean && npm run watch-files & webpack-dev-server --host 0.0.0.0",
"test": "eslint webpack.config.js src/scripts",
"watch-files": "sync-files --watch --no-delete src/static build/static"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-es2017": "^6.24.1",
"conventional-changelog-cli": "^1.3.1",
"css-loader": "^0.28.4",
"eslint": "^4.0.0",
"extract-text-webpack-plugin": "^2.1.2",
"gcloud-storage-upload": "^2.0.0",
"html-webpack-plugin": "^2.28.0",
"lodash.throttle": "^4.1.1",
"mapbox-gl": "^0.38.0",
"postcss-loader": "^2.0.6",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"sync-files": "^1.0.3",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.5.0"
},
"dependencies": {
"d3": "^4.9.1",
"lodash.range": "^3.2.0"
}
}