-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.02 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.02 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
{
"name": "gl-react-cookbook",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --fix",
"e2e": "playwright test",
"e2e:install": "playwright install --with-deps chromium"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"gl-react": "^5.2.0",
"gl-react-dom": "^5.2.1",
"gl-shader": "^4.2.1",
"gl-texture2d": "^2.1.0",
"gl-transitions": "^1.43.0",
"hoist-non-react-statics": "^3.3.2",
"invariant": "^2.2.4",
"lodash": "^4.18.1",
"ndarray": "^1.0.19",
"ndarray-ops": "^1.2.2",
"prism-theme-one-dark": "^1.0.0",
"prismjs": "^1.30.0",
"prop-types": "^15.8.1",
"query-string": "^9.3.1",
"raf": "^3.4.1",
"react": "^19.0.0",
"react-color": "^2.19.3",
"react-dom": "^19.0.0",
"react-gl-transition": "^1.19.2",
"react-json2d": "^0.3.0",
"react-motion": "^0.5.2",
"react-router-dom": "^6.28.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@playwright/test": "^1.58.2",
"@types/babel__core": "^7",
"@types/lodash": "^4.17.24",
"@types/prismjs": "^1.26.6",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.27",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.15",
"typescript": "^5.9.3",
"vite": "^6.4.2"
}
}