forked from pmndrs/market
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.53 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
{
"name": "react-three-next",
"version": "2.0.0",
"authors": [
"Renaud ROHLINGER <https://twitter.com/onirenaud>"
],
"private": false,
"scripts": {
"lint": "yarn prettier && yarn eslint",
"eslint": "eslint --fix \"src/**/*.{js,jsx}\" --ext jsconfig.json",
"prettier": "prettier --list-different '**/*.{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",
"minify": "node server/minify.js",
"postbuild": "next-sitemap",
"prepare": "husky install"
},
"dependencies": {
"@badrap/bar-of-progress": "^0.1.2",
"@gltf-transform/core": "^0.11.3",
"@gltf-transform/functions": "^0.11.3",
"@headlessui/react": "^1.2.0",
"@heroicons/react": "^1.0.1",
"@reach/slider": "^0.15.0",
"@react-spring/web": "^9.2.3",
"@react-three/drei": "^6.1.2",
"@react-three/fiber": "^7.0.1",
"@react-three/gltfjsx": "^4.2.2",
"@supabase/supabase-js": "^1.15.1",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@tailwindcss/forms": "^0.3.3",
"@tippyjs/react": "^4.2.5",
"antd": "^4.16.3",
"clipboard-copy": "^4.0.1",
"date-fns": "^2.22.1",
"file-saver": "^2.0.5",
"jszip": "^3.6.0",
"leva": "^0.9.11",
"next": "^11.0.0",
"nightwind": "^1.1.11",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.0.0",
"react-markdown": "^6.0.2",
"tailwindcss": "^2.1.4",
"three": "^0.129.0",
"three-stdlib": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@next/bundle-analyzer": "^11.0.0",
"autoprefixer": "^10.2.6",
"babel-eslint": "^10.1.0",
"eslint": "^7.28.0",
"eslint-config-next": "^11.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tailwind": "^0.2.1",
"express": "^4.17.1",
"fathom-client": "^3.0.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"next-sitemap": "^1.6.116",
"node-fetch": "^2.6.1",
"postcss": "^8.3.4",
"prettier": "^2.3.1"
},
"license": "MIT",
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix",
"*.{js,jsx,md}": "prettier --write",
"*.js": "eslint --cache --fix"
}
}