-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
56 lines (56 loc) · 1.97 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
{
"name": "caronaboard",
"version": "1.0.0",
"description": "Social ride network",
"main": "index.js",
"scripts": {
"start": "npm run generate-html && DEBUG=true webpack-dev-server --hot",
"start:dist": "http-server build",
"build": "rm -r ./build; npm run generate-html && webpack --progress && sw-precache --config=sw-precache-config.js",
"build:analyze": "npm run build && open build/stats.html",
"generate-html": "mkdir -p build && elm-static-html -c elm-static-html.json",
"test": "elm-test tests/Tests.elm",
"test:watch": "elm-test tests/Tests.elm --watch",
"deploy": "./deploy.sh",
"deploy:now": "npm run build && now build",
"install": "elm package install -y && cd tests && elm install && npm run sync-test-deps",
"sync-test-deps": "mkdir -p elm-stuff/generated-code/elm-community/elm-test/elm-stuff && cp -R tests/elm-stuff elm-stuff/generated-code/elm-community/elm-test/",
"precommit": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CaronaBoard/caronaboard.git"
},
"author": "CaronaBoard",
"license": "MIT",
"bugs": {
"url": "https://github.com/CaronaBoard/caronaboard/issues"
},
"homepage": "https://github.com/CaronaBoard/caronaboard#readme",
"dependencies": {
"firebase": "^3.5.3",
"http-server": "^0.10.0"
},
"devDependencies": {
"copy-webpack-plugin": "^4.2.3",
"css-loader": "^0.28.7",
"elm": "^0.18.0",
"elm-css-webpack-loader": "^3.3.0",
"elm-github-install": "^1.0.1",
"elm-hot-loader": "^0.5.4",
"elm-static-html": "^1.3.0",
"elm-test": "0.18.4",
"elm-webpack-loader": "^4.4.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"node-sass": "^4.5.2",
"now": "^4.2.2",
"raw-loader": "^0.5.1",
"style-loader": "^0.19.0",
"sw-precache": "^5.1.0",
"uglifyjs-webpack-plugin": "^1.1.2",
"webpack": "^3.1.0",
"webpack-dev-server": "^2.9.7",
"webpack-visualizer-plugin": "^0.1.11"
}
}