-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "chainalyze",
"version": "1.0.0",
"description": "A cryptocurrency analytics and data aggregation tool paired with a portfolio tracker.",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon",
"install:all": "concurrently \"npm install\" \"cd client && npm install\"",
"start:all": "concurrently \"npm run dev\" \"npm run dev --prefix client\"",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"author": "george burt",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"cors": "^2.8.5",
"express": "^4.21.1",
"mongoose": "^8.8.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/mongoose": "^5.11.96",
"@types/morgan": "^1.9.9",
"@types/supertest": "^6.0.2",
"concurrently": "^9.1.0",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}