forked from darkroomengineering/react-three-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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
{
"name": "react-three-next",
"version": "2.0.0",
"authors": [
"Renaud ROHLINGER <https://twitter.com/onirenaud>"
],
"license": "MIT",
"private": true,
"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"
},
"dependencies": {
"@react-three/a11y": "^2.1.0",
"@react-three/drei": "^7.1.2",
"@react-three/fiber": "^7.0.5",
"@studio-freight/stylelint-config-base-css": "^1.1.0",
"next": "^11.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"three": "^0.130.1",
"three-stdlib": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@next/bundle-analyzer": "^11.0.1",
"babel-plugin-glsl": "^1.0.0",
"eslint": "^7.30.0",
"eslint-config-next": "^11.0.1",
"eslint-plugin-tailwind": "^0.2.1",
"file-loader": "^6.2.0",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"next-compose-plugins": "^2.2.1",
"next-offline": "^5.0.5",
"prettier": "^2.3.2",
"raw-loader": "^4.0.2",
"sass": "^1.35.2",
"url-loader": "^4.1.1",
"webpack": "^5.44.0"
}
}