-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.03 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
{
"homepage": "https://mahfooz.tech/",
"name": "murrfolio",
"version": "0.1.2",
"private": true,
"scripts": {
"export": "next export",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:staged": "lint-staged",
"lint": "next lint",
"prepare": "husky install",
"format": "prettier --write .",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"postbuild": "next-sitemap"
},
"dependencies": {
"@react-three/cannon": "^3.0.0",
"@react-three/fiber": "^8.12.0",
"@sanity/block-content-to-react": "^3.0.0",
"@sanity/image-url": "^1.0.1",
"@types/gtag.js": "^0.0.7",
"@types/react-dom": "^18.0.10",
"@types/styled-components": "^5.1.11",
"@types/three": "^0.150.1",
"framer-motion": "^4.1.17",
"maath": "^0.5.3",
"next": "latest",
"next-compose-plugins": "^2.2.1",
"next-pwa": "^5.2.24",
"next-sitemap": "^1.6.168",
"openai": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.2.0",
"react-intersection-observer": "^8.32.0",
"react-star-sky": "^1.0.3",
"react-three": "^0.9.7",
"react-three-fiber": "^6.0.13",
"react-typed": "^1.2.0",
"sharp": "^0.30.5",
"styled-components": "^5.3.0",
"three": "^0.151.3",
"typescript-styled-plugin": "^0.18.2",
"use-cannon": "^0.5.3"
},
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-typing-effect": "^2.0.3",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "7.31.0",
"eslint-config-next": "11.0.1",
"gh-pages": "^4.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"react-starfield-animation": "^1.0.1",
"typescript": "4.3.5"
},
"resolutions": {
"styled-components": "^5"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
}
}