forked from fepztw/fepztw.github.io
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 2.06 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
{
"name": "hacktabl",
"version": "0.0.0",
"description": "Comparison table generator, using Ethercalc and Google Doc as the content backend",
"main": "index.html",
"devDependencies": {
"LiveScript": "^1.3.0",
"bootstrap-sass": "^3.3.5",
"compass-mixins": "^0.12.7",
"connect": "~2.21.1",
"css-loader": "^0.15.6",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"html-loader": "^0.3.0",
"jade": "^1.11.0",
"jade-html-loader": "0.0.2",
"karma": "~0.12.16",
"karma-chrome-launcher": "~0.1.3",
"karma-firefox-launcher": "~0.1.3",
"karma-html2js-preprocessor": "~0.1.0",
"karma-jasmine": "~0.1.5",
"karma-live-preprocessor": "^0.2.2",
"karma-safari-launcher": "~0.1.1",
"livescript-loader": "^0.1.5",
"ngtemplate-loader": "^1.3.0",
"node-sass": "^3.2.0",
"parallelshell": "^2.0.0",
"q": "~1.0.1",
"raw-loader": "^0.5.1",
"sass-loader": "^1.0.3",
"serve-static": "^1.10.0",
"url-loader": "^0.5.6",
"webpack": "^1.10.5",
"webpack-dev-server": "^1.10.1"
},
"scripts": {
"test": "webpack && karma start test/karma.conf.js --single-run",
"test:watch": "webpack && parallelshell 'webpack --watch' 'karma start test/karma.conf.js'",
"clean": "rm -rf build/",
"start": "parallelshell 'webpack-dev-server --progress' 'npm run build:index:dev'",
"build": "npm run build:webpack && npm run build:index:prod",
"build:index": "jade $npm_package_config_jade_in --out $npm_package_config_jade_out",
"build:index:dev": "npm run build:index -- --obj '{\"hash\":\"build/app\"}' --pretty --watch",
"build:index:prod": "npm run build:index -- --obj $npm_package_config_webpack_stat",
"build:webpack": "webpack --progress --json > $npm_package_config_webpack_stat",
"deploy": "make deploy"
},
"config": {
"jade_in": "src/jade/index.jade",
"jade_out": "./",
"webpack_stat": "webpack-stats.json"
},
"repository": {
"type": "git",
"url": "https://github.com/MrOrz/hacktabl.git"
},
"author": "MrOrz",
"license": "MIT"
}