-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.89 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.89 KB
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
{
"name": "mach-website",
"version": "0.1.0",
"license": "MIT",
"private": true,
"engines": {
"node": ">=14"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.17.0",
"@chakra-ui/icons": "^2.0.10",
"@chakra-ui/react": "^2.3.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/inter": "^4.5.12",
"@fontsource/poppins": "^4.5.9",
"@react-three/drei": "^9.29.1",
"@react-three/fiber": "^8.7.2",
"babel-plugin-glsl": "^1.0.0",
"framer-motion": "^6",
"glsl-random": "^0.0.5",
"next": "^12.3.0",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"three": "^0.144.0",
"three-stdlib": "^2.15.0",
"zustand": "^4.1.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.3.0",
"@types/node": "^18.7.16",
"@types/react": "^18.0.19",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"autoprefixer": "^10.4.2",
"eslint": "^8.23.0",
"eslint-config-next": "^12.3.0",
"eslint-plugin-chakra-ui": "^0.7.3",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-tailwind": "^0.2.1",
"file-loader": "^6.2.0",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.1.6",
"typescript": "^4.8.3",
"url-loader": "^4.1.1"
},
"scripts": {
"lint": "yarn prettier && yarn eslint",
"eslint": "next lint --fix --dir src",
"prettier": "prettier --list-different \"./src/**/*.{ts,tsx,md}\"",
"dev": "next dev",
"build": "next build",
"export": "EXPORT=true next build && EXPORT=true next export",
"analyze": "ANALYZE=true next build",
"start": "next start",
"postinstall": "husky install"
}
}