-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.29 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
{
"name": "@temple8/vite-vue-ts",
"version": "0.1.0",
"author": {
"name": "Asım Tahir",
"email": "[email protected]",
"url": "https://github.com/Asim-Tahir"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"lint:script": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:script@fix": "yarn lint:script --fix",
"lint:style": "stylelint src/**/*.{css,pcss,postcss}",
"lint:style@fix": "yarn lint:style --fix",
"lint": "yarn lint:script && yarn lint:style",
"lint@fix": "yarn lint:script@fix && yarn lint:style@fix",
"test": "jest -i tests/",
"test+coverage": "yarn test --coverage",
"test:ci": "yarn test --ci",
"test@watch": "yarn test --watch"
},
"dependencies": {
"vue": "^3.2.13"
},
"devDependencies": {
"@swc-node/jest": "^1.3.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/user-event": "^13.2.1",
"@testing-library/vue": "next",
"@types/eslint": "^7.28.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"@types/prettier": "^2.4.0",
"@types/stylelint": "^13.13.2",
"@types/testing-library__jest-dom": "^5.14.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"@vitejs/plugin-vue": "^1.9.0",
"@vue/vue3-jest": "^27.0.0-alpha.1",
"autoprefixer": "latest",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-testing-library": "^4.12.4",
"jest": "^27.2.2",
"jest-circus": "^27.2.2",
"jest-transform-stub": "^2.0.0",
"postcss": "latest",
"postcss-import": "^14.0.2",
"prettier": "^2.4.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-tailwindcss": "^0.0.1",
"tailwindcss": "latest",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"unplugin-auto-import": "^0.4.8",
"unplugin-vue-components": "^0.15.4",
"vite": "^2.5.10",
"vite-plugin-svg-icons": "^1.0.4",
"vue-tsc": "^0.3.0"
},
"packageManager": "[email protected]"
}