This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.31 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
73
74
75
76
77
{
"name": "huron",
"description": "An in-browser prototyping tool built on top of webpack and kss-node",
"author": "Alley Interactive",
"version": "2.3.3",
"license": "GPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/alleyinteractive/huron"
},
"scripts": {
"doc": "./node_modules/.bin/jsdoc src -r -c ./config/jsdoc.json",
"help": "./node_modules/.bin/babel-node src/cli/index.js -h",
"build": "npm run build-cli && npm run test:once && npm run build-web",
"dev": "concurrently -k \"npm run dev-cli\" \"npm run dev-web\"",
"dev-cli": "BABEL_ENV=cli webpack --config config/webpack.server.config.js -d --watch --progress",
"build-cli": "BABEL_ENV=cli webpack --config config/webpack.server.config.js",
"dev-web": "BABEL_ENV=browser webpack --config config/webpack.browser.config.js -d --watch --progress",
"build-web": "BABEL_ENV=browser webpack --config config/webpack.browser.config.js",
"test:once": "jest",
"test": "jest --watch"
},
"bin": {
"huron": "./dist/index.js"
},
"engines": {
"node": "6",
"npm": "5"
},
"files": [
"dist",
"config",
"templates"
],
"dependencies": {
"babel-core": "^6.26.3",
"chalk": "1.1.3",
"commander": "2.9.0",
"concurrently": "^3.5.0",
"css-loader": "0.26.1",
"dom-loader": "1.0.4",
"fs-extra": "4.0.2",
"gaze": "0.5.2",
"handlebars": "4.0.6",
"handlebars-loader": "^1.6.0",
"html-loader": "0.4.3",
"html-webpack-plugin": "^2.30.1",
"immutable": "3.8.1",
"json-loader": "0.5.4",
"kss": "^3.0.0-beta.18",
"lodash": "^4.17.11",
"opn": "^5.1.0",
"style-loader": "0.13.1",
"webpack": ">=2.6.1",
"webpack-dev-server": "^2.9.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "20.0.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "0.1.15",
"eslint": "3.11.1",
"eslint-config-airbnb": "13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jest": "20.0.3",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.8.0",
"jest": "20.0.4",
"jsdoc": "3.4.3",
"mock-fs": "4.4.1",
"raw-loader": "^0.5.1",
"regenerator-runtime": "0.10.5",
"webpack-node-externals": "1.5.4"
}
}