-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.26 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.26 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
{
"scripts": {
"dev": "next",
"build": "next build",
"lint": "next lint",
"format": "prettier --write .",
"start": "next start",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^15.3.1",
"@react-three/drei": "^9.120.3",
"@react-three/fiber": "^8.17.10",
"@theme-ui/match-media": "^0.16.1",
"@theme-ui/prism": "^0.16.1",
"@theme-ui/style-guide": "^0.16.1",
"@theme-ui/typography": "^0.16.1",
"chroma-js": "^2.4.2",
"chromotome": "^1.21.4",
"file-saver": "^2.0.5",
"flatbush": "^4.2.0",
"fscreen": "^1.2.0",
"gl-matrix": "^3.4.3",
"immutable": "^4.3.4",
"material-icons": "^1.13.12",
"next": "^14.0.4",
"normalize.css": "^8.0.1",
"open-simplex-noise": "^2.5.0",
"p5": "^1.9.0",
"paper": "^0.12.17",
"prop-types": "^15.8.1",
"ramda": "^0.29.1",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-resize-detector": "^9.1.0",
"theme-ui": "^0.16.1",
"tiny-invariant": "^1.3.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@fast-check/jest": "^2.1.1",
"@svgr/webpack": "^8.1.0",
"@swc/core": "^1.3.99",
"@swc/jest": "^0.2.29",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/chroma-js": "^2.4.3",
"@types/file-saver": "^2.0.7",
"@types/fscreen": "^1.0.4",
"@types/jest": "^29.5.6",
"@types/ramda": "^0.29.9",
"@types/react-dom": "^18.2.0",
"@types/three": "^0.170.0",
"cypress": "^13.6.1",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^10.0.1",
"fast-check": "^3.14.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"prettier": "^3.4.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2",
"typescript": "^5.3.3"
}
}