-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "dashboard",
"version": "1.0.0",
"description": "Dashboard for showing Vaavud's KPIs (Maria's thesis)",
"main": "main.js",
"dependencies": {
"firebase": "^2.4.1",
"highcharts": "^4.2.3",
"jquery": "^2.2.2",
"babel-polyfill": "^6.3.14"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.24",
"babel-loader": "^5.3.2",
"browser-sync": "^2.10.0",
"mkdirp": "^0.5.1",
"parallelshell": "^1.2.0",
"sane": "^1.3.0",
"webpack": "^1.12.2",
"webpack-notifier": "^1.2.1"
},
"scripts": {
"prebuild": "mkdirp build",
"build": "parallelshell 'npm run build:js' 'npm run build:cp'",
"build:js": "export NODE_ENV=production && webpack -p",
"build:bs": "browser-sync start --server 'build' --files 'build/*'",
"build:cp": "cp -R src/index.html build",
"predev": "mkdirp dev",
"dev": "parallelshell 'npm run dev:js' 'npm run dev:bs' 'npm run dev:cp'",
"dev:js": "webpack --watch",
"dev:bs": "browser-sync start --server 'dev' --files 'dev/*' --port 8080",
"dev:cp": "sane 'cp -R src/index.html dev' --glob='src/index.html'",
"predeploy": "npm run build",
"deploy": "firebase deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaavud/dashboard.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vaavud/dashboard/issues"
},
"homepage": "https://github.com/vaavud/dashboard#readme"
}