-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 823 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 823 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
{
"name": "theos-poc-be",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "tsc && node ./dist/app.js",
"dev": "export DEBUG=* && nodemon --ext ts --exec 'npm run start'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/node": "^16.9.2",
"nodemon": "^2.0.12",
"source-map-support": "^0.5.20",
"tslint": "^6.1.3",
"typescript": "^4.4.3"
},
"dependencies": {
"@emurgo/cardano-serialization-lib-nodejs": "^9.1.4",
"cors": "^2.8.5",
"debug": "^4.3.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.12.1",
"express-winston": "^4.2.0",
"winston": "^3.3.3"
}
}