-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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": "thats-camping-elm",
"version": "0.0.1",
"description": "That's Camping",
"engines": {
"node": "6.9.4"
},
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "webpack -p",
"watch": "webpack --watch",
"dev": "webpack-dev-server --port 3000 --history-api-fallback",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "elm-github-install install; webpack -p",
"server": "webpack; node docs/server.js",
"start": "node docs/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mlandauer/thats-camping-elm.git"
},
"author": "Matthew Landauer",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mlandauer/thats-camping-elm/issues"
},
"homepage": "https://github.com/mlandauer/thats-camping-elm",
"devDependencies": {
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"appcache-webpack-plugin": "^1.3.0",
"bootstrap": "^3.3.7",
"compression": "^1.6.2",
"css-loader": "^0.26.1",
"elm-github-install": "^0.3.1",
"elm-webpack-loader": "^4.2.0",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.0.0-rc.2",
"file-loader": "^0.10.0",
"git-rev-sync": "^1.8.0",
"jquery": "^3.1.1",
"leaflet": "^1.0.3",
"pouchdb": "^6.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.8",
"webpack": "^2.2.0"
}
}