forked from Badisches-Landesmuseum/xcurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.5 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
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "xcurator-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "test -f .envs.local && source .envs.local && next dev -p 1234 || source .envs && next dev -p 1234",
"ts": "tsc --noEmit --incremental --preserveWatchOutput --pretty",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"generate": "test -f .envs.local source .envs.local && graphql-codegen --config codegen.ts || source .envs && graphql-codegen --config codegen.ts",
"clean-install": "rm -rf node_modules/ && yarn cache clean && yarn install --pure-lockfile",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"prepare": "husky install",
"format": "prettier --check --ignore-path .gitignore helm .",
"format:fix": "prettier --write --ignore-path .gitignore helm .",
"lint:fix": "eslint src --fix"
},
"dependencies": {
"@apollo/client": "3.8.4",
"@capsizecss/core": "3.1.1",
"@dnd-kit/core": "6.0.8",
"@dnd-kit/modifiers": "6.0.1",
"@dnd-kit/sortable": "7.0.2",
"@graphql-codegen/named-operations-object": "3.0.0",
"@graphql-codegen/typescript-react-apollo": "4.0.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "1.3.0",
"@radix-ui/react-popover": "1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-tabs": "1.0.4",
"@radix-ui/react-toast": "1.1.5",
"@radix-ui/react-toggle-group": "1.0.4",
"@smastrom/react-rating": "^1.3.2",
"@socialgouv/matomo-next": "^1.8.0",
"@stitches/react": "^1.2.8",
"@tanstack/react-query": "4.35.3",
"@types/react-router-dom": "5.3.3",
"@uiball/loaders": "^1.3.0",
"cryptr": "6.3.0",
"fs": "0.0.1-security",
"graphql": "16.8.1",
"jwt-decode": "3.1.2",
"keycloak-js": "22.0.3",
"next": "13.4.3",
"next-auth": "4.23.1",
"next-intl": "2.21.0",
"next-runtime-env": "^1.6.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intersection-observer": "9.5.2",
"react-keyed-flatten-children": "^3.0.0",
"react-minimal-pie-chart": "^8.4.0",
"react-multi-carousel": "2.8.4",
"react-responsive-masonry": "2.1.7",
"sharp": "0.32.6",
"tiny-invariant": "1.3.1",
"uuid": "9.0.1",
"zustand": "4.4.1"
},
"devDependencies": {
"@graphql-codegen/add": "5.0.0",
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@graphql-codegen/typescript-react-query": "5.0.0",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "14.0.0",
"@types/d3-scale": "4.0.5",
"@types/node": "20.7.1",
"@types/react-dom": "18.2.8",
"@types/react-responsive-masonry": "2.1.1",
"@types/uuid": "9.0.4",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
"dotenv": "16.3.1",
"env-cmd": "10.1.0",
"eslint": "8.50.0",
"eslint-config-next": "13.5.3",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.0.3",
"ts-node": "10.9.1",
"typescript": "5.2.2"
}
}