-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
78 lines (78 loc) · 2.64 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
78
{
"name": "webpack-babel-starter",
"version": "3.0.0",
"description": "Webpack Babel Starter Kit",
"scripts": {
"postinstall": "node ./contributing/bin/install-warning-message.js",
"start": "npm run webpack",
"test": "npm run lint",
"lint": "./node_modules/.bin/eslint src",
"lint-fix": "./node_modules/.bin/eslint --fix src --ext .js",
"clean-dist": "node ./bin/clean-dist.js",
"serve-build": "echo 'Serving distribution folder build/dist' && npm run serve-dist",
"serve-dist": "./node_modules/.bin/serve build/dist",
"build": "npm run clean-dist && npm run webpack-build",
"build-prod": "npm run clean-dist && NODE_ENV=production npm run webpack-build-prod",
"build-prod-all": "DEVTOOLS=false npm run build-prod && NODE_ENV=production OPTIMIZE=false DEVTOOLS=true DIST_DIR=dist/devtools npm run webpack-build",
"postbuild-prod-all": "npm run generate-dist-readme",
"webpack": "./node_modules/.bin/webpack-dev-server --progress --colors --hot --inline",
"webpack-build": "./node_modules/.bin/webpack --progress",
"webpack-build-prod": "./node_modules/.bin/webpack --progress -p",
"generate-dist-readme": "node bin/generate-dist-readme.js",
"contributing-test": "./contributing/bin/contributing-test.sh"
},
"pre-commit": [
"test"
],
"keywords": [
"Webpack",
"Babel",
"ES6",
"Sass",
"Eslint",
"Starter Kit",
"boilerplate"
],
"author": "Christophe Rosset <[email protected]> (http://labs.topheman.com/)",
"repository": {
"type": "git",
"url": "https://github.com/topheman/webpack-babel-starter.git"
},
"bugs": {
"url": "https://github.com/topheman/webpack-babel-starter/issues"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.5.2",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.2.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-es2015": "^6.5.0",
"chai": "^4.0.2",
"css-loader": "^0.28.4",
"del": "^2.2.0",
"eslint": "4",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-react": "7",
"extract-text-webpack-plugin": "2",
"file-loader": "^0.11.2",
"git-rev-sync": "^1.4.0",
"html-webpack-plugin": "^2.9.0",
"lodash.template": "^4.2.2",
"mocha": "^3.4.2",
"moment": "^2.11.2",
"my-local-ip": "^1.0.0",
"node-sass": "^4.5.3",
"npmlog": "^2.0.2",
"pre-commit": "^1.1.2",
"sass-loader": "^6.0.6",
"serve": "^1.4.0",
"style-loader": "^0.18.2",
"url-loader": "^0.5.7",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"private": true
}