-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.55 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
{
"name": "vue-unit-ts",
"description": "Unit Testing for Vue 3.3 + TS",
"version": "0.0.1",
"author": "Wisdom <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc --noEmit --skipLibCheck && vite build",
"preview": "vite preview --host",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx,.vue",
"lint:fix": "eslint --fix --cache --ext .js,.ts,.jsx,.tsx,.vue .",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pdsuwwz/vue-unit-ts"
},
"bugs": {
"url": "https://github.com/pdsuwwz/vue-unit-ts/issues"
},
"dependencies": {
"vue": "^3.3.4"
},
"engines": {
"node": ">=16.15.x"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@sucrase/jest-plugin": "^3.0.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.4",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/test-utils": "2.4.1",
"@vue/vue3-jest": "^29.2.4",
"babel-jest": "^29.6.1",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"eslint": "^8.45.0",
"eslint-plugin-html": "7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vue": "^9.15.1",
"jest": "^29.6.1",
"jest-environment-jsdom": "29.7.0",
"jest-transform-stub": "^2.0.0",
"sucrase": "^3.34.0",
"ts-jest": "29.1.1",
"typescript": "^5.1.6",
"vite": "^4.4.6",
"vue-tsc": "1.8.14"
}
}