-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·95 lines (95 loc) · 2.79 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
{
"name": "generative",
"author": "@neefrehman",
"description": "A digital playground for experimenting with generative art, WebGL and Machine Learning",
"homepage": "https://generative.neef.co",
"repository": {
"type": "git",
"url": "git+https://github.com/neefrehman/Generative.git"
},
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"format": "prettier \"src/**/*.{js,ts,tsx}\"",
"format:fix": "prettier \"src/**/*.{js,ts,tsx}\" --write",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,ts,tsx}\" --fix",
"format-glsl": "clang-format -style=file **/*.frag **/*.vert **/*.glsl",
"format-glsl:fix": "clang-format -i -style=file **/*.frag **/*.vert **/*.glsl",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@react-three/cannon": "^4.6.1",
"@react-three/drei": "^8.8.3",
"@react-three/fiber": "^7.0.26",
"@react-three/postprocessing": "^2.1.2",
"@react-three/xr": "^3.3.0",
"glsl-easings": "^1.0.0",
"glsl-hsl2rgb": "^1.1.0",
"glsl-noise": "0.0.0",
"glsl-smooth-min": "^1.0.0",
"glsl-worley": "^1.0.2",
"glslify": "^7.1.1",
"glslify-hex": "^2.1.1",
"gsap": "^3.9.1",
"leva": "^0.9.18",
"linaria": "^2.3.1",
"make-matrix": "^2.3.3",
"next": "^13.1.1",
"next-linaria": "^0.11.0",
"nice-color-palettes": "^3.0.0",
"p5": "^1.4.1",
"postprocessing": "^6.23.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-use-gesture": "^9.1.3",
"simplex-noise": "^3.0.1",
"three": "^0.137.5",
"three-stdlib": "^2.8.6"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@netlify/plugin-nextjs": "^4.29.4",
"@types/node": "^18.11.18",
"@types/p5": "^1.4.3",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.26",
"@types/three": "^0.137.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"babel-plugin-glsl": "^1.0.0",
"clang-format": "^1.8.0",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^12.0.10",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"file-loader": "^6.2.0",
"glslify-loader": "^2.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"raw-loader": "^4.0.2",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.9.4"
},
"glslify": {
"transform": [
"glslify-hex"
]
},
"lint-staged": {
"*.(js|ts|tsx)": [
"eslint --fix",
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "lint-staged"
}
}