-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.39 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
{
"name": "dom-webgl-explorations",
"version": "0.3.0",
"private": false,
"scripts": {
"lint": "yarn prettier && yarn eslint",
"eslint": "eslint --fix 'src/**/*.{js,jsx}' --ext jsconfig.json",
"prettier": "prettier --list-different \"./src/**/*.{js,jsx,md}\"",
"dev": "next dev",
"build": "next build",
"export": "EXPORT=true next build && EXPORT=true next export",
"analyze": "ANALYZE=true next build",
"start": "next start"
},
"lint-staged": {
"*.{js,jsx,json,md}": [
"prettier --write"
],
"*.{js,jsx}": [
"eslint --fix"
]
},
"dependencies": {
"@react-spring/core": "^9.2.4",
"@react-spring/three": "^9.2.4",
"@react-three/a11y": "^2.2.3",
"@react-three/drei": "7.12.5",
"@react-three/fiber": "^7.0.9",
"@use-gesture/react": "10.0.2",
"esbuild-loader": "^2.15.1",
"glsl-aastep": "^1.0.1",
"glsl-fractal-brownian-noise": "^1.1.0",
"glsl-noise": "^0.0.0",
"glsl-random": "^0.0.5",
"glsl-rotate": "^1.1.0",
"gsap": "^3.8.0",
"lerp": "^1.0.3",
"next": "^11.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-gsap": "^3.2.1",
"react-spring": "^9.2.4",
"react-ssr-prepass": "^1.4.0",
"react-timing-hooks": "^2.0.0",
"react-use": "^17.3.1",
"styled-components": "^5.3.1",
"tailwindcss": "^2.2.16",
"three": "^0.133.0",
"three-stdlib": "^2.4.2"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@next/bundle-analyzer": "^11.1.2",
"@types/node": "^16.7.6",
"@types/react": "^17.0.19",
"autoprefixer": "^10.3.3",
"babel-eslint": "^10.1.0",
"babel-plugin-glsl": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.9.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tailwind": "^0.2.1",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"lint-staged": "^11.1.2",
"next-compose-plugins": "^2.2.1",
"next-offline": "^5.0.5",
"postcss": "^8.3.8",
"prettier": "^2.4.1",
"raw-loader": "^4.0.2",
"typescript": "^4.4.3",
"url-loader": "^4.1.1",
"webpack": "^5.56.0"
}
}