-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"private": true,
"name": "coup-map",
"description": "A map showing all COUP scooters in Berlin.",
"version": "0.1.0",
"keywords": [
"coup",
"scooters",
"ride sharing",
"map"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/coup-map",
"repository": "derhuerst/coup-map",
"bugs": "https://github.com/derhuerst/coup-map/issues",
"license": "ISC",
"engines": {
"node": ">=6"
},
"dependencies": {
"compression": "^1.7.2",
"corser": "^2.0.1",
"express": "^4.16.3",
"fetch-ponyfill": "^6.0.2",
"lodash.omit": "^4.5.0",
"pinkie-promise": "^2.0.1",
"serve-static": "^1.13.2",
"stringify-entities": "^1.3.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^16.2.0",
"envify": "^4.1.0",
"uglify-es": "^3.3.9"
},
"scripts": {
"build": "env NODE_ENV=production browserify -g [ babelify --presets env ] -g [ envify purge ] client/index.js | uglifyjs -mc > client/bundle.js",
"build:dev": "env NODE_ENV=dev browserify -g envify client/index.js > client/bundle.js",
"start": "node index.js"
}
}