-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 984 Bytes
/
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
{
"name": "truemlgpro_website",
"version": "1.0.2",
"private": true,
"scripts": {
"dev": "concurrently \"npm run build:watch\" \"next dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build:css": "postcss styles/tailwind.css -o styles/main.css",
"build:watch": "postcss styles/tailwind.css -o styles/main.css --watch",
"prod:build": "NODE_ENV=production npm run build:css && npm run build"
},
"dependencies": {
"@react-three/drei": "^9.70.4",
"@react-three/fiber": "^8.13.0",
"autoprefixer": "^10.4.14",
"concurrently": "^8.1.0",
"default-passive-events": "^2.0.0",
"next": "^13.4.4",
"postcss": "^8.4.24",
"postcss-cli": "^10.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"request-ip": "^3.3.0",
"tailwindcss": "^3.3.2",
"three": "^0.153.0"
},
"devDependencies": {
"cssnano": "^6.0.1",
"eslint": "^8.42.0",
"eslint-config-next": "^13.4.4"
}
}