-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.34 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
{
"name": "ches",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"check": "tsc --noEmit && echo '\u001b[32m✔ Typecheck OK\u001b[0m' && next lint",
"test": "jest --watch",
"golden": "FILE=$(mktemp); touch $FILE; esbuild tools/golden.ts --bundle --platform=node --minify --define:process.env.NODE_ENV=\\\"${NODE_ENV:-production}\\\" > $FILE; node $FILE",
"bench": "FILE=$(mktemp); touch $FILE; esbuild tools/bench.ts --bundle --platform=node --minify --define:process.env.NODE_ENV=\\\"${NODE_ENV:-production}\\\" > $FILE; node $FILE"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/serialize": "^1.1.4",
"@emotion/utils": "^1.2.1",
"@mantine/core": "^6.0.21",
"@mantine/hooks": "^6.0.21",
"@p5-wrapper/next": "^0.2.0",
"@p5-wrapper/react": "^4.2.0",
"@vercel/analytics": "^1.2.2",
"class-transformer": "^0.5.1",
"howler": "^2.2.3",
"json-diff": "^1.0.6",
"lodash": "^4.17.21",
"next": "^14.2.3",
"p5": "^1.7.0",
"ramda": "^0.29.1",
"random-seedable": "^1.0.8",
"react": "18.3.0",
"react-command-palette": "^0.22.1",
"react-dom": "18.3.0",
"react-no-ssr": "^1.1.0",
"reflect-metadata": "^0.1.14",
"ts-pattern": "^5.0.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/howler": "^2.2.8",
"@types/jest": "^29.5.5",
"@types/json-diff": "^1.0.0",
"@types/lodash": "^4.14.197",
"@types/node": "20.5.1",
"@types/p5": "^1.7.0",
"@types/ramda": "^0.29.9",
"@types/react": "18.3.0",
"@types/react-command-palette": "^0.18.1",
"@types/react-dom": "18.3.0",
"@types/react-no-ssr": "^1.1.7",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"esbuild": "^0.19.8",
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.3",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-react": "^7.34.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"sass": "^1.66.1",
"typescript": "^5.3.2"
},
"browserslist": [
"defaults",
"not IE 11",
"not op_mini all"
],
"volta": {
"node": "20.5.1",
"pnpm": "9.1.0"
},
"packageManager": "[email protected]"
}