-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
70 lines (70 loc) · 2.13 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
{
"name": "berg",
"description": "Asset compilation with webpack",
"version": "1.0.0",
"author": "Icelab",
"repository": {},
"dependencies": {
"domready": "^1.0.8",
"es5-shim": "4.5.2",
"es6-shim": "^0.34.2",
"immutable": "^3.7.6",
"metaquery": "^1.2.0",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"roneo": "icelab/roneo",
"viewloader": "^1.1.0"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"css-loader": "^0.23.1",
"del": "^1.1.1",
"eslint": "^1.10.3",
"eslint-config-standard": "^4.4.0",
"eslint-config-standard-react": "^1.2.1",
"eslint-loader": "^1.2.0",
"eslint-plugin-react": "^3.13.1",
"eslint-plugin-standard": "^1.3.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"glob": "7.0.3",
"gulp": "^3.8.11",
"gulp-jsoncombine": "^1.0.2",
"gulp-md5": "^0.1.0",
"gulp-rev-all": "^0.7.6",
"gulp-rev-rails-manifest": "0.0.1",
"gulp-tap": "^0.1.3",
"imports-loader": "^0.6.5",
"js-yaml": "^1.0.2",
"postcss": "^5.0.14",
"postcss-cssnext": "^2.4.0",
"postcss-import": "^7.1.3",
"postcss-loader": "^0.8.0",
"postcss-modules-values": "^1.1.1",
"run-sequence": "^1.0.2",
"style-loader": "^0.13.0",
"webpack": "^1.13.0",
"webpack-dev-server": "1.14.0",
"webpack-merge": "0.12.0",
"webpack-notifier": "^1.2.1"
},
"engines": {
"node": ">= 4.4.2",
"npm": "3.8.6"
},
"scripts": {
"clean": "npm run clean-build",
"clean-build": "rm -rf ./assets/build/*",
"start": "node ./assets/development-server.js",
"precompile": "node ./assets/precompile.js",
"prebuild-development": "npm run clean-build",
"build-development": "webpack --config ./assets/webpack-development.config.js",
"prebuild-production": "npm run clean-build",
"build-production": "NODE_ENV=production webpack --config ./assets/webpack-production.config.js -p --bail",
"postbuild-production": "npm run precompile",
"lint": "eslint 'apps/**/assets/**/*.js'; exit 0"
}
}