-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.74 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
{
"name": "@ropescore/app",
"version": "3.0.0",
"private": true,
"type": "module",
"author": "Svante Bengtson <[email protected]> (https://swantzter.se)",
"license": "MIT",
"homepage": "https://ropescore.app",
"repository": "https://github.com/RopeScore/app",
"scripts": {
"dev": "vite",
"build": "npm run codegen && vite build",
"serve": "vite preview",
"postversion": "git push && git push --tags",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"typecheck": "vue-tsc --noEmit",
"codegen": "graphql-codegen --config codegen.yml",
"codegen:watch": "npm run codegen -- --watch"
},
"dependencies": {
"@apollo/client": "^3.11.8",
"@ropescore/components": "^1.9.1",
"@ropescore/rulesets": "^0.13.3",
"@sentry/vue": "^8.36.0",
"@vue/apollo-composable": "^4.2.1",
"@vue/tsconfig": "^0.5.1",
"@vueuse/core": "^11.2.0",
"graphql": "^16.9.0",
"graphql-ws": "^5.16.0",
"idb-keyval": "^6.2.1",
"safari-14-idb-fix": "^3.0.0",
"uuid": "^11.0.2",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/typescript": "^4.1.1",
"@graphql-codegen/typescript-operations": "^4.3.1",
"@graphql-codegen/typescript-vue-apollo": "^4.1.1",
"@parcel/watcher": "^2.4.1",
"@types/eslint__js": "^8.42.3",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/compiler-sfc": "^3.5.12",
"eslint": "^9.14.0",
"eslint-plugin-vue": "^9.30.0",
"neostandard": "^0.11.7",
"typescript": "5.5",
"vite": "^5.4.10",
"vite-plugin-pwa": "^0.20.5",
"vite-plugin-windicss": "^1.9.3",
"vue-tsc": "^2.1.10"
}
}