-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.62 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
75
76
{
"name": "vx",
"version": "0.2.1",
"description": "",
"scripts": {
"dev": "tsc -p tsconfig.server.json && cross-env NODE_ENV=\"development\" node --env-file=../.env ./dist/index.js",
"clean": "rm -rf dist && rm -rf .next",
"clean:win": "rm dist && rm .next",
"dev:win": " tsc -p tsconfig.server.json && cross-env NODE_ENV=\"development\" node --env-file=.env ./dist/index.js",
"dev:server": "cross-env NODE_ENV=\"development\" node ./dist/index.js",
"prod": "next build && tsc -p tsconfig.server.json && cross-env NODE_ENV=\"production\" node --env-file=../.env ./dist/index.js",
"start": "next build && tsc -p tsconfig.server.json && cross-env NODE_ENV=\"production\" node --env-file=.env ./dist/index.js",
"dev:ts": "cross-env NODE_ENV=development nodemon",
"build": "next build",
"build:ts": "./node_modules/.bin/tsc.cmd -p tsconfig.server.json && cross-env NODE_ENV=\"development\" node ./dist/index.js",
"lint": "next lint",
"analyze": "ANALYZE=true next build"
},
"keywords": [],
"author": "nknight amamiya",
"license": "Apache-2.0",
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@next/bundle-analyzer": "^15.1.0",
"@next/font": "^13.5.3",
"@prisma/client": "^5.13.0",
"@react-three/fiber": "^8.13.7",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query": "^5.61.5",
"@types/express": "^5.0.0",
"@types/react": "^18.2.64",
"@types/styled-components": "^5.1.28",
"@types/three": "^0.155.1",
"@unocss/postcss": "^0.62.3",
"@unocss/preset-uno": "^0.62.3",
"@unocss/webpack": "^0.62.3",
"@vercel/og": "^0.6.2",
"body-parser": "^1.20.3",
"cookies-next": "^4.2.1",
"cross-env": "^7.0.3",
"express": "4.21.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"framer-motion": "^10.18.0",
"fs": "^0.0.1-security",
"gray-matter": "^4.0.3",
"html-webpack-plugin": "^5.5.3",
"ip": "^2.0.1",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"next": "^14.2.5",
"nodemon": "^3.1.4",
"path": "^0.12.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^4.10.1",
"react-markdown": "^9.0.1",
"react-use": "^17.4.0",
"sass": "^1.77.0",
"styled-components": "^6.0.7",
"three": "^0.155.0",
"unocss": "^0.62.3",
"viem": "2.x",
"wagmi": "^2.13.2"
},
"devDependencies": {
"@iconify-json/mdi": "^1.2.1",
"@playwright/test": "^1.48.2",
"@types/node": "^20.12.11",
"@unocss/preset-icons": "^0.65.0",
"prisma": "^5.3.0-dev.8",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"zod": "^3.23.8"
}
}