forked from CaronaBoard/caronaboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.41 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": "caronaboard",
"version": "1.0.0",
"description": "Social ride network",
"main": "index.js",
"scripts": {
"start": "http-server build",
"start:dev": "yarn generate-html && webpack-dev-server",
"build": "yarn generate-html && webpack -p --progress && sw-precache --config=sw-precache-config.js",
"build:analyze": "webpack -p --profile --json > build/stats.json && webpack-bundle-analyzer build/stats.json",
"generate-html": "mkdir -p build && elm-static-html -c elm-static-html.json",
"test": "elm-test",
"deploy": "./deploy.sh"
},
"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.9.0"
},
"devDependencies": {
"copy-webpack-plugin": "^4.0.1",
"elm": "^0.18.0",
"elm-static-html": "^1.2.0",
"elm-test": "^0.18.2",
"elm-webpack-loader": "^4.1.1",
"html-webpack-plugin": "^2.24.1",
"node-sass": "^4.1.1",
"raw-loader": "^0.5.1",
"sass-loader": "^4.1.1",
"sw-precache": "^4.2.3",
"webpack": "^2.2.0-rc.2",
"webpack-bundle-analyzer": "^2.2.1",
"webpack-dev-server": "^2.2.0-rc.0",
"webpack-validator": "^2.3.0"
}
}