-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "babel-webpack",
"version": "0.0.1",
"description": "Babel Webpack Starter Kit",
"main": "./src/index.js",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-jest": "^12.1.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"jest": "^12.1.1",
"webpack": "^1.13.1"
},
"scripts": {
"test": "jest",
"build": "npm run build:dev && npm run build:prod",
"build:dev": "webpack --progress --profile --colors",
"build:watch": "webpack --watch --progress --profile --colors",
"build:prod": "NODE_ENV=production webpack --progress --profile --colors",
"build:clean": "rm -rf dest/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocketedaway/babel-webpack.git"
},
"author": "Randy Wilander",
"license": "MIT",
"bugs": {
"url": "https://github.com/rocketedaway/babel-webpack/issues"
},
"homepage": "https://github.com/rocketedaway/babel-webpack#readme",
"keywords": [
"JS",
"NodeJS",
"Webpack",
"Babel",
"Starter",
"template"
],
"babelWebpack": {
"buildFolder": "./dest"
}
}