-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 822 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 822 Bytes
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"test": "jest --runInBand --forceExit",
"dev": "concurrently \"tsc -w\" \"nodemon dist/server.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"alchemy-sdk": "^2.6.1",
"axios": "^1.3.6",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mysql2": "^3.2.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/node": "^18.15.3",
"@types/supertest": "^2.0.12",
"jest": "^29.5.0",
"nodemon": "^2.0.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
}
}