-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.86 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.86 KB
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
{
"name": "impulze-vue3",
"version": "0.0.0",
"scripts": {
"serve": "vite preview",
"build": "vue-tsc --noEmit && vite build",
"lint": "eslint --ext .ts,vue --ignore-path .gitignore .",
"lint:fix": "eslint --ext .ts,vue --ignore-path .gitignore . --fix",
"dev": "vite",
"test": "jest src",
"test:watch": "jest src --watch"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/eslint-config-typescript": "^9.1.0",
"axios": "^0.24.0",
"pinia": "^2.0.4",
"swrv": "^1.0.0-beta.8",
"vee-validate": "^4.5.6",
"vue": "^3.2.16",
"vue-router": "^4.0.12",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@pinia/testing": "0.0.6",
"@testing-library/vue": "^6.4.2",
"@types/jest": "^27.0.3",
"@vitejs/plugin-vue": "^1.9.3",
"@vue/cli-plugin-eslint": "^4.5.15",
"@vue/cli-plugin-unit-jest": "5.0.0-beta.2",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^2.0.0-rc.9",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.5.6",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^7.0.0",
"flush-promises": "^1.0.2",
"jest": "^26.5.6",
"lint-staged": "^9.5.0",
"msw": "^0.35.0",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"ts-jest": "^26.5.6",
"typescript": "^4.4.3",
"vite": "^2.6.4",
"vue-composable-tester": "^0.1.3",
"vue-jest": "^5.0.0-alpha.10",
"vue-tsc": "^0.3.0",
"vue3-jest": "^27.0.0-alpha.1"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"npm run lint",
"git add"
]
}
}