-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.27 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "africa-grid-map",
"version": "1.0.0",
"description": "A visualization of the electricity grid in Sub Saharan Africa.",
"repository": {
"type": "git",
"url": "https://github.com/energy-data/africa-grid-explorer.git"
},
"author": {
"name": "Development Seed",
"url": "https://developmentseed.org"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/energy-data/africa-grid-explorer/issues"
},
"homepage": "https://github.com/energy-data/africa-grid-explorer",
"scripts": {
"postinstall": "[ -f app/assets/scripts/config/local.js ] || echo \"'use strict';\n\nexport default {\n environment: 'development'\n};\" > app/assets/scripts/config/local.js",
"serve": "DS_ENV=development gulp serve",
"build": "DS_ENV=production NODE_ENV=production gulp",
"stage": "DS_ENV=staging NODE_ENV=staging gulp",
"lint": "eslint app/assets/scripts/ --ext .js",
"test": "echo \"No tests\" && exit 0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
]
}
],
"require-globify",
"envify"
]
},
"devDependencies": {
"babel": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babelify": "^7.3.0",
"browser-sync": "^2.18.8",
"browserify": "^14.1.0",
"del": "^2.2.2",
"envify": "^4.0.0",
"eslint": "^4.18.2",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"gulp": "^3.9.1",
"gulp-cache": "^0.4.6",
"gulp-csso": "^3.0.0",
"gulp-exit": "0.0.2",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^3.1.1",
"gulp-load-plugins": "^1.5.0",
"gulp-plumber": "^1.1.0",
"gulp-rev": "^7.1.2",
"gulp-rev-replace": "^0.4.3",
"gulp-sass": "^3.1.0",
"gulp-size": "^2.1.0",
"gulp-sourcemaps": "^2.4.1",
"gulp-uglify": "^2.1.2",
"gulp-useref": "^3.1.2",
"gulp-util": "^3.0.8",
"node-bourbon": "^4.2.8",
"node-notifier": "^5.1.2",
"node-sass": "^4.5.1",
"require-globify": "^1.4.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.9.0"
},
"dependencies": {
"lodash.defaultsdeep": "^4.6.1"
}
}