forked from status-im/status-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "api",
"version": "0.2.2",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev --turbopack --port 3030",
"build": "next build",
"start": "next start",
"lint": "next lint --dir=src --ext=.ts --ext=.tsx",
"lint:fix": "pnpm lint --fix",
"format": "prettier --write .",
"typecheck": "tsc",
"env:check": "node -r dotenv/config ./src/config/env.server.mjs dotenv_config_path=./.env && :",
"clean": "rimraf .next .vercel/output node_modules .turbo"
},
"dependencies": {
"@status-im/wallet": "workspace:*",
"@trpc/client": "10.45.2",
"@trpc/next": "10.45.2",
"@trpc/server": "10.45.2",
"next": "15.3.8",
"react": "19.1.2",
"react-dom": "19.1.2",
"zod": "3.25.76"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@next/eslint-plugin-next": "15.3.0",
"@types/node": "^20",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"eslint": "^9",
"eslint-config-next": "15.3.0",
"globals": "^15.12.0",
"typescript": "^5.6.2"
},
"engines": {
"node": "22.x"
},
"lint-staged": {
"{.env,src/config/env.server.mjs}": [
"pnpm env:check"
],
"*.{ts,tsx,js,jsx,mjs}": [
"eslint",
"prettier --write"
],
"*.{yml,yaml,json}": [
"prettier --write"
]
},
"packageManager": "pnpm@9.12.3"
}