-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.62 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
{
"name": "vue-components-starter",
"version": "1.0.0",
"main": "index.js",
"private": true,
"license": "MIT",
"scripts": {
"commit": "cz -a",
"prettier": "prettier --write ./packages/",
"lint:style": "npx stylelint ./packages/**/*.scss",
"lint": "eslint --ext .js,.ts,.vue ./packages/",
"lint-fix": "eslint --ext .js,.ts,.vue ./packages/ --fix",
"test": "jest",
"new": "ts-node --project ./scripts/tsconfig.json ./scripts/new.ts",
"playground": "webpack serve --config=./website/webpack.playground.config.js",
"prepare": "husky install",
"readme-toc": "gimtoc -f README.md -s \"Table of Contents\" -o README.md"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/node": "^14.14.36",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"@vue/babel-plugin-jsx": "^1.0.3",
"@vue/compiler-sfc": "^3.0.7",
"@vue/component-compiler-utils": "^3.2.0",
"babel-loader": "^8.2.2",
"babel-preset-vue": "^2.0.2",
"chalk": "^4.1.0",
"commitizen": "^4.2.3",
"css-loader": "^5.2.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.8.0",
"gimtoc": "^1.3.3",
"highlight.js": "^10.2.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^5.2.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"postcss": "^8.2.8",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"raw-loader": "^0.5.1",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^21.0.0",
"ts-loader": "^8.0.18",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"vue": "^3.0.7",
"vue-loader": "^16.1.2",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"yargs": "^16.2.0"
},
"lint-staged": {
"*.{js,ts,vue}": [
"yarn run lint-fix",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"file-loader": "^6.2.0",
"marked": "3.0.4",
"url-loader": "^4.1.1",
"vue-router": "^4.0.11"
}
}