-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.72 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
{
"name": "webpack-babel",
"version": "1.0.0",
"description": "Webpack and Babel boilerplate",
"main": "build/dist/webpack-babel.browser.min.js",
"scripts": {
"build": "webpack -d --config config/webpack.config.js",
"build:es6": "cross-env NODE_ENV=es6 npm run build",
"deploy": "cross-env NODE_ENV=production webpack -p --config config/webpack.config.js",
"build:all": "rimraf build && npm run build && npm run build:es6 && npm run deploy",
"live-server": "webpack-dev-server -d --port 8080 --progress --colors --hot --config config/webpack.config.js",
"live-server:es6": "cross-env NODE_ENV=es6 npm run live-server",
"live-server:deploy": "cross-env NODE_ENV=production npm run live-server",
"watch": "npm run build -- -w",
"start": "http-server -a localhost -p 8080 -c-1"
},
"author": "Luís Fernandes aka Apidcloud <[email protected]>",
"license": "MIT",
"files": [
"build",
"README.md"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "5.0.0",
"http-server": "^0.10.0",
"rimraf": "^2.6.1",
"webpack": "3.5.2",
"webpack-dev-server": "2.7.1",
"webpack-notifier": "1.5.0"
},
"dependencies": {
"babel-runtime": "^6.23.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Apidcloud/webpack-babel.git"
},
"keywords": [
"javascript",
"webpack",
"babel",
"boilerplate",
"transform-runtime"
],
"bugs": {
"url": "https://github.com/Apidcloud/webpack-babel/issues"
},
"homepage": "https://github.com/Apidcloud/webpack-babel#readme"
}