-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
72 lines (72 loc) · 2.08 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "hackafe-website",
"version": "2.0.0",
"description": "Hackafe Website",
"main": "index.js",
"license": "ISC",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Hackafe/website.git"
},
"keywords": [
"hackafe"
],
"bugs": {
"url": "https://github.com/Hackafe/website/issues"
},
"homepage": "http://hackafe.org",
"dependencies": {
"aliasify": "^2.0.0",
"babel-core": "^6.17.0",
"babel-preset-es2015": "^6.16.0",
"babelify": "^7.3.0",
"bootstrap": "^3.3.7",
"browserify": "^13.1.0",
"cross-env": "^3.1.2",
"font-awesome": "^4.6.3",
"harp": "^0.20.3",
"jsonp": "^0.2.0",
"minifyify": "^7.3.3",
"mkdirp": "^0.5.1",
"moment": "^2.15.1",
"npm-run-all": "^3.1.0",
"rimraf": "^2.5.4",
"vue": "^2.0.1",
"vue-resource": "^1.0.3",
"vueify": "^9.4.0"
},
"devDependencies": {
"browserify-hmr": "^0.3.5",
"gh-pages": "^0.12.0",
"watchify": "^3.7.0"
},
"aliasify": {
"aliases": {
"vue": "vue/dist/vue.js"
}
},
"browserify": {
"transform": [
"vueify",
"babelify"
]
},
"scripts": {
"prebuild": "npm run clean -s && mkdirp build",
"build:fonts:fontawesome": "mkdirp build/fonts && cp node_modules/font-awesome/fonts/* build/fonts",
"build:fonts:glyphicons": "mkdirp build/fonts && cp node_modules/bootstrap/fonts/* build/fonts",
"build:js": "cross-env NODE_ENV=production browserify src/index.js -d -p [minifyify --map /scripts.map.json --output build/scripts.map.json] > build/scripts.js",
"build:static": "harp compile --output build",
"test": "echo \"No test specified\"",
"harp": "harp",
"watch:js": "watchify -vd -p browserify-hmr -e src/index.js -o public/scripts.js -t aliasify",
"watch": "npm-run-all -lp watch:**",
"server": "harp server",
"//": "main commands",
"build": "npm-run-all -l build:static -p build:fonts:** build:js",
"start": "npm-run-all -lp server watch",
"clean": "rimraf build && rimraf public/scripts.js",
"deploy": "gh-pages -d build -t"
}
}