-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.95 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.95 KB
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
99
{
"name": "craftbase",
"version": "0.7.5",
"private": true,
"main": "src/lib.ts",
"module": "src/lib.ts",
"types": "src/lib.ts",
"exports": {
".": {
"types": "./src/lib.ts",
"default": "./src/lib.ts"
},
"./package.json": "./package.json"
},
"peerDependencies": {
"@apollo/client": "^3.10.4",
"graphql": "^16.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^6.30.3",
"react-router-dom": "^6.30.3"
},
"dependencies": {
"@apollo/client": "^3.10.4",
"@sentry/react": "^10.49.0",
"@tanstack/react-ranger": "^0.0.4",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"framer-motion": "^11.2.10",
"graphql": "^16.8.1",
"idx": "^3.0.3",
"immer": "^10.1.1",
"interactjs": "^1.10.27",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-responsive": "10.0.0",
"react-router": "^6.30.3",
"react-router-dom": "^6.30.3",
"styled-components": "^6.1.11",
"subscriptions-transport-ws": "^0.11.0",
"two.js": "^0.8.13",
"use-immer": "^0.9.0"
},
"scripts": {
"start": "vite",
"build": "node scripts/write-build-info.mjs && vite build",
"preview": "vite preview",
"test": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"typecheck": "tsc --noEmit",
"codegen": "graphql-codegen --config codegen.ts"
},
"resolutions": {
"micromatch": ">=4.0.8",
"form-data": ">=3.0.4",
"brace-expansion": ">=5.0.6",
"lodash": ">=4.18.0",
"postcss": ">=8.5.10"
},
"eslintConfig": {
"extends": "react-app/base"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typed-document-node": "^5.0.6",
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-operations": "^4.2.0",
"@playwright/test": "^1.59.1",
"@types/node": "^25.7.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.36",
"@types/two.js": "^0.7.9",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.27",
"dotenv": "^17.4.2",
"jsdom": "^25.0.0",
"tailwindcss": "^3.4.4",
"typescript": "^6.0.3",
"vite": "^6.4.2",
"vite-plugin-svgr": "^5.2.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^3.2.4"
}
}