-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 877 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 877 Bytes
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
{
"name": "hackurba",
"version": "1.0.0",
"description": "HackUrba prototype",
"main": "server.js",
"repository": "git@github.com:jdesboeufs/hackurba.git",
"author": "Jérôme Desboeufs <jerome.desboeufs@data.gouv.fr>",
"license": "MIT",
"scripts": {
"dev": "webpack && node server",
"build": "webpack -p",
"start": "node server",
"deploy": "cp public/* dist/ && gh-pages -d dist"
},
"dependencies": {
"@turf/turf": "^3.10.3",
"decko": "^1.1.3",
"express": "^4.14.1",
"leaflet": "^1.0.3",
"lodash": "^4.17.4",
"preact": "^7.2.0"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-preset-env": "^1.1.10",
"gh-pages": "^0.12.0",
"webpack": "^2.2.1"
}
}