-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
61 lines (61 loc) · 1.45 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
{
"name": "es6-lessons",
"version": "1.0.0",
"description": "学习ES6的简单不能再简单的环境搭建",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch",
"start": "webpack-dev-server --open",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cucygh/es6-lessons.git"
},
"eslintConfig": {
"plugins": [
"html"
],
"parser": "babel-eslint"
},
"eslintIgnore": [
"node_modules",
"webpack.config.js"
],
"babel": {
"presets": [
"env"
],
"plugins": ["transform-decorators-legacy"]
},
"keywords": [
"ES6",
"Webpack"
],
"author": "cuc_ygh@163.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/cucygh/es6-lessons/issues"
},
"homepage": "https://github.com/cucygh/es6-lessons#readme",
"dependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.17",
"eslint": "^3.19.0",
"eslint-plugin-html": "^4.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.5"
},
"devDependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"eslint-plugin-babel": "^4.1.2"
}
}