-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
151 lines (151 loc) · 4.18 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "rubik-cli",
"version": "4.2.0",
"description": "Only one command for web app development with Pure/Vue/React or javascript libraries.",
"bin": {
"rubik": "bin/main.js"
},
"scripts": {
"lint": "eslint --fix -f friendly .",
"commit": "yarn lint && git add . && git-cz",
"test": "yarn lint && jest",
"test:utils": "jest __tests__/utils.test.js",
"test:command": "jest __tests__/app/command.test.js",
"release": "yarn test && standard-version"
},
"keywords": [
"vue",
"react",
"rubik",
"webpack",
"multiple"
],
"author": "Fancy <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fancyboynet/rubik-cli.git"
},
"bugs": {
"url": "https://github.com/fancyboynet/rubik-cli/issues"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.5",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/format": "^8.2.0",
"@commitlint/lint": "^8.2.0",
"@commitlint/load": "^8.2.0",
"@commitlint/read": "^8.2.0",
"@mapbox/stylelint-processor-arbitrary-tags": "^0.2.0",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"cache-loader": "^4.0.1",
"chalk": "^2.4.1",
"clean-webpack-plugin": "^3.0.0",
"common-bin": "^2.8.2",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.1.4",
"css-loader": "^3.1.0",
"debug": "^4.1.1",
"download-git-repo": "^2.0.0",
"eslint": "^6.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-formatter-friendly": "^7.0.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.18.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.0.0",
"file-loader": "^4.1.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.5.0",
"inquirer": "^7.0.0",
"install": "^0.13.0",
"ip": "^1.1.5",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"node-emoji": "^1.10.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"portfinder": "^1.0.26",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"sass": "^1.22.10",
"sass-loader": "^8.0.0",
"semver": "^6.3.0",
"shelljs": "^0.8.2",
"style-loader": "^1.0.0",
"stylelint": "^11.1.1",
"stylelint-config-prettier": "^6.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-prettier": "^1.1.1",
"stylelint-scss": "^3.12.1",
"svg-inline-loader": "^0.8.0",
"terser-webpack-plugin": "^2.0.1",
"url-loader": "^2.1.0",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.0.9"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module"
},
"extends": [
"standard"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix -f friendly .",
"git add"
]
},
"devDependencies": {
"coffee": "^5.2.2",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.0.2",
"husky": "^3.0.1",
"jest": "^24.9.0",
"lint-staged": "^9.2.0",
"rimraf": "^3.0.0",
"standard-version": "^7.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"testRegex": "__tests__/.*\\.test\\.js"
}
}