-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
77 lines (77 loc) · 2.5 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": "dotci",
"version": "0.0.4",
"description": "DotCi",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/groupon/DotCi.git"
},
"bugs": "https://github.com/groupon/DotCi/issues",
"author": "",
"license": "MIT",
"dependencies": {
"ansi-to-html": "^0.3.0",
"autoprefixer": "^5.2.0",
"autoprefixer-core": "^5.2.0",
"autoprefixer-loader": "^1.1.0",
"babel-core": "^5.8.25",
"babel-eslint": "^3.0.1",
"babel-loader": "^5.3.2",
"babel-polyfill": "^6.0.16",
"babel-runtime": "^5.8.25",
"bower": "latest",
"chai": "latest",
"chart.js": "^1.0.2",
"classnames": "^1.2.0",
"css-loader": "^0.14.0",
"enquire.js": "^2.1.1",
"es6-object-assign": "^1.0.1",
"eslint": "^0.18.0",
"extract-text-webpack-plugin": "^0.3.8",
"file-loader": "^0.8.1",
"hint.css": "^1.3.4",
"json-loader": "^0.5.1",
"less": "^2.4.0",
"less-loader": "^2.0.0",
"lesshat": "^3.0.2",
"page": "^1.6.3",
"postcss-custom-properties": "^4.0.0",
"postcss-import": "^6.0.0",
"postcss-loader": "^0.5.0",
"postcss-nested": "^0.3.1",
"qs": "^2.3.3",
"qwest": "^1.5.11",
"ramda": "^0.13.0",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-proxy-loader": "^0.3.1",
"react-tools": "latest",
"scroll-into-view": "^1.5.0",
"semantic-ui-checkbox": "^1.12.3",
"style-loader": "^0.8.3",
"url-loader": "latest",
"vulcanize": "^1.13.1"
},
"devDependencies": {
"karma": "latest",
"karma-chrome-launcher": "^0.1.7",
"karma-cli": "0.0.4",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.10",
"karma-sourcemap-loader": "^0.3.2",
"karma-webpack": "latest",
"mocha": "^2.0.1",
"react-hot-loader": "^1.1.1",
"webpack": "1.12.2",
"webpack-dev-server": "latest"
},
"scripts": {
"build": "npm install && npm run package && npm run vulcanize",
"package": "$(npm bin)/webpack --release=true --colors --progress",
"lint": "eslint src/main/jsx/**/*",
"watch": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --config webpack.config.dev.js --colors --progress --hot --inline --port 3000",
"test": "$(npm bin)/karma start",
"vulcanize": "rm -f src/main/webapp/webcomponent-imports-vulcanized.html && $(npm bin)/bower install --config.interactive=false && $(npm bin)/vulcanize --inline-css --inline-scripts src/main/webapp/webcomponent-imports.html > src/main/webapp/webcomponent-imports-vulcanized.html"
}
}