-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.93 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
{
"name": "arch-counter-app",
"version": "0.0.1",
"scripts": {
"build": "vite build --debug",
"dev": "vite --host",
"serve": "vite preview --host",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"format": "prettier --write \"**/*.{js,ts,vue,json,md,test.js}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix",
"*.{css,scss,vue}": "stylelint --fix",
"*": "prettier -w -u"
},
"dependencies": {
"@apollo/client": "^3.5.8",
"@vue/apollo-composable": "^4.0.0-alpha.16",
"@vue/cli-service": "^4.5.15",
"a2hs.js": "^0.5.0",
"graphql": "^16.3.0",
"graphql-tag": "^2.12.6",
"pinia": "^2.0.11",
"register-service-worker": "^1.7.1",
"vue": "^3.0.5",
"vue-router": "^4.0.1",
"vuex": "^4.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"@vitejs/plugin-react-refresh": "^1.3.2",
"@vitejs/plugin-vue": "^1.10.2",
"@vue/cli-plugin-pwa": "~4.5.0",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-rc.18",
"bulma": "^0.9.3",
"c8": "^7.11.0",
"eslint": "^8.8.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.4.0",
"happy-dom": "^2.31.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"stylelint": "^14.3.0",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard": "^24.0.0",
"typescript": "^4.5.5",
"vite": "^2.4.4",
"vite-plugin-pwa": "^0.11.13",
"vitest": "^0.2.5",
"vue-tsc": "^0.0.15",
"workbox-precaching": "^6.4.2",
"workbox-window": "^6.4.2"
}
}