-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 863 Bytes
/
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
{
"name": "mini-vue3",
"version": "1.0.0",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "jest --watch",
"example": "live-server packages/vue",
"build": "rollup -c -w --sourcemap rollup.config.js",
"dev": "pnpm build & pnpm example",
"format": "eslint \"**/*.{vue,ts,js}\" --fix",
"lint": "eslint \"**/*.{vue,ts,js}\""
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@ouduidui/eslint-config-ts": "^0.0.2",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.3",
"@types/rewire": "^2.5.28",
"babel-jest": "^27.3.1",
"eslint": "^8.11.0",
"jest": "^27.3.1",
"live-server": "^1.2.1",
"rewire": "^6.0.0",
"rollup": "^2.60.0",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
}
}