-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
93 lines (93 loc) · 2.5 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
{
"name": "@originjs/webpack-to-vite",
"version": "1.2.0",
"description": "convert a webpack project to a vite project",
"main": "dist/bin/index.js",
"bin": {
"webpack-to-vite": "dist/bin/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsc -w -p tsconfig.json",
"prebuild": "del-cli dist/",
"build": "tsc -p tsconfig.json",
"postbuild": "cpy \"template/*\" ../dist/src --cwd=src/ --no-overwrite --parents",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/originjs/webpack-to-vite.git"
},
"keywords": [
"vite",
"webpack",
"vue-cli"
],
"author": "@originjs",
"license": "MulanPSL2",
"bugs": {
"url": "https://github.com/originjs/webpack-to-vite/issues"
},
"homepage": "https://github.com/originjs/webpack-to-vite#readme",
"devDependencies": {
"@types/ejs": "^3.0.6",
"@types/eslint-scope": "^3.7.0",
"@types/jscodeshift": "^0.11.0",
"@types/node": "^12.12.47",
"@types/webpack": "4.41.26",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"c8": "^7.11.0",
"conventional-changelog-cli": "^2.1.1",
"cpy-cli": "^3.1.1",
"del-cli": "^3.0.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"typescript": "^4.5.4",
"vite": "^2.7.10",
"vite-plugin-env-compatible": "^1.0.0",
"vite-plugin-vue2": "^1.6.2",
"vitest": "^0.3.4",
"vue-loader": "^15.9.7",
"webpack": "^5.59.1",
"yorkie": "^2.0.0"
},
"dependencies": {
"@originjs/vue-sfc-ast-parser": "^1.0.2",
"chalk": "^4.1.1",
"cli-progress": "^3.9.0",
"commander": "^7.2.0",
"ejs": "^3.1.6",
"globby": "^11.0.3",
"html-webpack-plugin": "^5.5.0",
"jscodeshift": "^0.12.0",
"semver": "^7.3.5",
"table": "^6.7.1",
"vue-eslint-parser": "^7.6.0",
"webpack-chain": "4.12.1",
"webpack-merge": "4.2.2",
"yargs": "^17.0.1"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"eslint --fix",
"git add"
]
}
}