-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.47 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": "schuleinzugsgebiete",
"version": "0.1.0",
"description": "School districts in Potsdam",
"repository": {
"type": "git",
"url": "https://github.com/open-data-potsdam/schuleinzugsgebiete.git"
},
"author": "Jan Ehrhardt <jan.ehrhardt@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/open-data-potsdam/schuleinzugsgebiete/issues"
},
"dependencies": {
"express": "^4.15.3",
"fast-csv": ">=4.3.6",
"nunjucks": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"jquery": "^3.2.1",
"leaflet": "^1.0.3",
"less": "^2.7.2",
"less-plugin-clean-css": "^1.5.1",
"supervisor": "^0.12.0",
"tachyons": "^4.7.4",
"watch": "^1.0.2"
},
"scripts": {
"start": "node lib/server.js",
"dev": "supervisor --watch lib,templates,data --extensions js,html,json lib/server.js",
"copy-vendor-deps": "cp -R node_modules/tachyons/css/tachyons.min.css node_modules/jquery/dist/jquery.min.js node_modules/leaflet/dist/leaflet.css node_modules/leaflet/dist/leaflet.js node_modules/leaflet/dist/images public/vendor",
"build-css": "lessc --clean-css less/styles.less public/css/styles.css",
"watch-css": "watch 'npm run-script build-css' less",
"build-js": "babel js/app.js --out-file public/js/app.js",
"watch-js": "babel -w js/app.js --out-file public/js/app.js"
},
"babel": {
"minified": true,
"presets": [
"es2015"
]
}
}