-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.73 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
{
"name": "bitstudio.id",
"version": "0.0.1",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"prod": "npm run build",
"serve": "vite preview",
"prepare": "husky install",
"test": "jest"
},
"lint-staged": {
"*.{vue,js,ts}": "eslint --fix"
},
"dependencies": {
"@ant-design/icons-vue": "^2.0.0",
"@vitejs/plugin-vue": "^1.2.5",
"ant-design-vue": "^2.2.2",
"axios": "^0.21.1",
"mitt": "^3.0.0",
"qs": "^6.10.1",
"vite": "^2.4.3",
"vite-plugin-components": "^0.13.2",
"vue": "^3.0.5",
"vue-router": "^4.0.10"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.1",
"@types/vue": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-rc.10",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.14.0",
"husky": "^7.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"ts-jest": "^26.5.6",
"typescript": "^4.3.5",
"vite-plugin-compression": "^0.3.1",
"vue-jest": "^5.0.0-alpha.10",
"vue-tsc": "^0.0.24"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}