-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.94 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
68
69
70
{
"name": "store-admin",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test-unit": "jest",
"test-e2e": "cypress open",
"test-e2e-ci": "cypress run",
"test": "yarn test-unit && yarn test-e2e-ci",
"lint": "eslint --ext .ts,vue src/** --no-error-on-unmatched-pattern"
},
"dependencies": {
"axios": "^0.21.1",
"element-plus": "^1.0.2-beta.41",
"element3": "0.0.40",
"factory-girl": "^5.0.4",
"pinia": "^2.0.0-alpha.13",
"stylus": "^0.54.8",
"vue": "^3.0.5",
"vue-router": "^4.0.6",
"vuex": "^4.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix",
"*": "prettier -w -u"
},
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/preset-typescript": "^7.12.17",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/vue": "^6.4.0",
"@types/jest": "^26.0.20",
"@types/testing-library__jest-dom": "^5.9.5",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"@vitejs/plugin-vue": "^1.1.4",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-rc.1",
"@vuedx/typescript-plugin-vue": "^0.6.3",
"axios": "^0.21.1",
"babel-jest": "^26.6.3",
"cypress": "^6.5.0",
"eslint": "^7.20.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.6.0",
"jest": "^26.6.3",
"less": "^4.1.1",
"lint-staged": "^10.5.4",
"msw": "^0.28.2",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"typescript": "4.1.5",
"vite": "^2.0.1",
"vite-plugin-style-import": "^0.10.0",
"vue-jest": "^5.0.0-alpha.8",
"yorkie": "^2.0.0"
},
"msw": {
"workerDirectory": "public"
}
}