-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"version": "1.4.1",
"private": true,
"scripts": {
"local": "nodemon",
"dev": "API_ENV=staging nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "API_ENV=staging node dist/main.js",
"validate-signature": "tsc scripts/*.ts && node scripts/validate-signature.js"
},
"dependencies": {
"axios": "^1.20.0",
"express": "^5.2.1",
"http-signature": "^1.4.0",
"next": "^16.3.3",
"qs": "^6.15.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-pro-sidebar": "^1.1.0",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/http-signature": "^1.3.3",
"@types/node": "^18.11.5",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"@types/sshpk": "^1.17.4",
"nodemon": "^2.0.20",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.0"
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --write --config .prettierrc",
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write --config .prettierrc",
"git add"
]
}
},
"engines": {
"node": "20"
}
}