-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.37 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "tabletop-online",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"lint": "eslint . --ext .js,.ts,.vue --fix",
"preinstall": "if ! pnpm exec only-allow pnpm; then rm -rf node_modules/ package-lock.json && exit 1; fi",
"prepare": "husky install",
"commit": "cz"
},
"dependencies": {
"@headlessui/vue": "^1.6.7",
"@heroicons/vue": "^1.0.6",
"@tailwindcss/forms": "^0.5.2",
"@vueuse/core": "^8.9.4",
"dompurify": "^2.3.10",
"events": "^3.3.0",
"lodash-es": "^4.17.21",
"pinia": "^2.0.16",
"reconnecting-websocket": "^4.4.0",
"sharedb": "^3.0.0",
"socket.io-client": "^4.5.1",
"ts-toolbelt": "^9.6.0",
"vite-svg-loader": "^3.4.0",
"vue": "^3.2.37",
"vue-router": "^4.1.2",
"vue-toastification": "^2.0.0-rc.5"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/cz-commitlint": "^17.0.3",
"@types/dompurify": "^2.3.3",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.6.1",
"@types/sharedb": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@vitejs/plugin-legacy": "^2.0.0",
"@vitejs/plugin-vue": "^3.0.1",
"autoprefixer": "^10.4.7",
"commitizen": "^4.2.5",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.6.0",
"eslint-plugin-unicorn": "^43.0.2",
"eslint-plugin-vue": "^9.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"only-allow": "^1.1.1",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"sass": "^1.54.0",
"tailwindcss": "^3.1.6",
"typescript": "^4.7.4",
"vite": "^3.0.2",
"vite-plugin-checker": "^0.4.9",
"vite-plugin-vue-type-imports": "^0.2.0",
"vue-eslint-parser": "^9.0.3",
"vue-tsc": "^0.39.0"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"inquirer",
"@vue/compiler-sfc",
"terser"
]
}
}
}