forked from vitejs/vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.32 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
{
"name": "vite",
"version": "0.14.4",
"license": "MIT",
"author": "Evan You",
"bin": {
"vite": "bin/vite.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"bin",
"dist",
"hmr.d.ts"
],
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vite.git"
},
"bugs": {
"url": "https://github.com/vuejs/vite/issues"
},
"homepage": "https://github.com/vuejs/vite/tree/master/#readme",
"scripts": {
"dev": "run-p dev-client dev-node dev-sw",
"dev-client": "tsc -w --p src/client",
"dev-node": "tsc -w --p src/node",
"dev-sw": "tsc -w --p src/sw",
"build": "rm -rf dist && tsc -p src/client && tsc -p src/node && tsc -p src/sw",
"lint": "prettier --write --parser typescript \"src/**/*.ts\"",
"test": "jest --clearCache && jest --runInBand --forceExit",
"test-sw": "cross-env USE_SW=1 yarn test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepublishOnly": "yarn build && yarn changelog",
"postpublish": "git add CHANGELOG.md && git commit -m 'chore: changelog [ci skip]' && git push"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"prettier --parser=typescript --write"
]
},
"jest": {
"watchPathIgnorePatterns": [
"<rootDir>/test/temp"
]
},
"dependencies": {
"@babel/parser": "^7.9.4",
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/koa": "^2.11.3",
"@vue/compiler-sfc": "^3.0.0-beta.12",
"brotli-size": "^4.0.0",
"chalk": "^4.0.0",
"chokidar": "^3.3.1",
"cssnano": "^4.1.10",
"debug": "^4.1.1",
"es-module-lexer": "^0.3.18",
"esbuild": "^0.2.6",
"execa": "^4.0.1",
"fs-extra": "^9.0.0",
"hash-sum": "^2.0.0",
"koa": "^2.11.0",
"koa-conditional-get": "^2.0.0",
"koa-etag": "^3.0.0",
"koa-send": "^5.0.0",
"koa-static": "^5.0.0",
"lru-cache": "^5.1.1",
"magic-string": "^0.25.7",
"minimist": "^1.2.5",
"open": "^7.0.3",
"ora": "^4.0.4",
"postcss": "^7.0.28",
"postcss-load-config": "^2.1.0",
"postcss-modules": "^2.0.0",
"resolve-from": "^5.0.0",
"rollup": "^2.7.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "^6.0.0-alpha.10",
"slash": "^3.0.0",
"vue": "^3.0.0-beta.12",
"ws": "^7.2.3"
},
"devDependencies": {
"@pika/react": "^16.13.1",
"@pika/react-dom": "^16.13.1",
"@types/es-module-lexer": "^0.3.0",
"@types/fs-extra": "^8.1.0",
"@types/hash-sum": "^1.0.0",
"@types/jest": "^25.2.1",
"@types/lru-cache": "^5.1.0",
"@types/node": "^13.13.1",
"@types/postcss-load-config": "^2.0.1",
"@types/serve-handler": "^6.1.0",
"@types/ws": "^7.2.4",
"conventional-changelog-cli": "^2.0.31",
"cross-env": "^7.0.2",
"jest": "^25.4.0",
"lint-staged": "^10.1.6",
"lodash-es": "^4.17.15",
"npm-run-all": "^4.1.5",
"postcss-nesting": "^7.0.1",
"preact": "^10.4.1",
"prettier": "^2.0.4",
"pug": "^2.0.4",
"puppeteer": "^3.0.0",
"sass": "^1.26.5",
"typescript": "^3.8.3",
"vue-router": "^4.0.0-alpha.10",
"vuex": "^4.0.0-beta.1",
"yorkie": "^2.0.0"
}
}