-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "aptimus-server",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"start": "ts-node src/server.ts",
"dev": "ts-node-dev src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aptos-labs/ts-sdk": "^1.22.2",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^8.4.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.6",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.9",
"morgan": "^1.10.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
}
}