-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·69 lines (69 loc) · 2.25 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
{
"name": "authier",
"private": true,
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/capaj/authier.git",
"authors": [
"Petr <[email protected]>",
"Jiri Spac <[email protected]>"
],
"license": "AGPL-3.0-or-later",
"overrides": {
"graphql": "^16.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@apollo/client": "^3.11.8",
"@chakra-ui/react": "2.10.2",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/fragment-matcher": "^5.0.2",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/typescript": "^4.1.1",
"@graphql-codegen/typescript-operations": "^4.3.1",
"@graphql-codegen/typescript-react-apollo": "^4.3.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"concurrently": "^9.0.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"framer-motion": "^11",
"generate-password": "^1.7.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.0.1",
"zod": "^3.23.8",
"zx": "^8.2.0"
},
"scripts": {
"dev:be": "cd backend && pnpm run dev",
"dev:ex": "cd web-extension && pnpm run dev",
"dev": "concurrently \"pnpm dev:be\" \"pnpm dev:ex\"",
"tsc": "cd backend && tsc && cd .. && cd web-extension && tsc && cd .. && cd mobile-app && tsc",
"bump": "npm-run-all --parallel bump:*",
"bump:be": "cd backend && ncu -u",
"bump:ex": "cd web-extension && ncu -u",
"bump:w": "ncu -u",
"test": "cd backend && pnpm test && cd .. && cd web-extension && pnpm test",
"gfs": "graphql-codegen --config codegen.yml",
"gbs": "cd backend && pnpm gbs",
"schemas": "pnpm gbs && pnpm gfs",
"preinstall": "npx only-allow pnpm",
"release": "cd web-extension && pnpm run newTag"
},
"pnpm": {
"patchedDependencies": {}
}
}