-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.45 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.45 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
{
"name": "assassin.dev",
"version": "1.0.0",
"description": "Assassin's personal website",
"homepage": "https://assassin.dev",
"author": "ShyAssassin",
"license": "MIT",
"scripts": {
"dev": "next dev -H 127.0.0.1 -p 4141",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier ./src --write",
"getSpotifyAuth": "npx ts-node ./scripts/getSpotifyAuth.ts"
},
"dependencies": {
"@chakra-ui/react": "^2.5.1",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@vercel/analytics": "^1.0.1",
"framer-motion": "^10.2.4",
"next": "^13.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"sharp": "^0.31.3",
"swr": "^2.1.0",
"three": "^0.152.2"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@types/node": "^18.19.130",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/three": "^0.152.0",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependenciesComments": {
"typescript": "TODO: Upgrade to ^5.0.0 once the chakra ui bug is fixed: https://github.com/chakra-ui/chakra-ui/issues/7459"
}
}