-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
102 lines (102 loc) · 2.73 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "athena2",
"version": "0.0.18",
"description": "A build tool for front end",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"lint:fix": "eslint --fix bin src test",
"lint": "eslint bin src test"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"bin": {
"ath2": "bin/ath2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/o2team/athena2.git"
},
"keywords": [
"build-tool"
],
"author": "luckyadam",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"bugs": {
"url": "https://github.com/o2team/athena2/issues"
},
"homepage": "https://github.com/o2team/athena2#readme",
"dependencies": {
"@babel/core": "7.6.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-transform-react-jsx": "^7.7.4",
"archiver": "2.1.0",
"autoprefixer": "9.7.1",
"babel-loader": "8.0.6",
"babel-plugin-macros": "^2.6.1",
"babel-plugin-named-asset-import": "^0.3.4",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-preset-env": "1.6.0",
"babel-preset-react-app": "^9.0.2",
"chalk": "2.4.2",
"clean-webpack-plugin": "0.1.17",
"commander": "4.0.0",
"css-loader": "3.2.0",
"es3ify-loader": "0.2.0",
"exports-loader": "0.7.0",
"file-loader": "4.2.0",
"fs-extra": "8.1.0",
"ftps": "1.1.1",
"git-clone": "0.1.0",
"hot-module-accept": "1.1.2",
"html-loader": "0.5.5",
"html-webpack-harddisk-plugin": "1.0.1",
"html-webpack-plugin": "3.2.0",
"inquirer": "7.0.0",
"lodash": "4.17.15",
"mem-fs": "1.1.3",
"mem-fs-editor": "3.0.2",
"mini-css-extract-plugin": "0.8.0",
"node-sass": "4.13.0",
"ora": "4.0.2",
"postcss-assets": "5.0.0",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"postcss-plugin-px2rem": "0.8.1",
"postcss-sprites": "4.2.1",
"request": "2.88.0",
"sass-loader": "8.0.0",
"script-loader": "0.7.2",
"semver": "6.3.0",
"shelljs": "0.8.3",
"style-loader": "1.0.0",
"terser-webpack-plugin": "3.0.6",
"url-loader": "2.2.0",
"uuid": "3.3.3",
"vue-loader": "15.7.2",
"vue-template-compiler": "2.6.10",
"webpack": "4.41.2",
"webpack-dev-server": "3.9.0",
"webpack-manifest-plugin": "2.2.0",
"webpack-merge": "4.2.2",
"zepto": "1.2.0"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2"
}
}