-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "datacat-backend",
"version": "1.0.0",
"description": "datacat-backend",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development nodemon -r dotenv/config src/app.ts",
"prod": "cross-env NODE_ENV=production nodemon -r dotenv/config src/app.ts",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@lighthouse-web3/sdk": "^0.3.0",
"axios": "^1.6.8",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"helmet": "^7.1.0",
"mongoose": "^8.2.2",
"multer": "^1.4.5-lts.1",
"node-forge": "^1.3.1",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/lodash": "^4.14.200",
"@types/multer": "^1.4.11",
"@types/node": "^20.8.7",
"@types/node-forge": "^1.3.11",
"@types/uuid": "^9.0.8",
"typescript": "^5.2.2"
}
}