-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 809 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 809 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "nodemon --watch src/**/*.ts --exec \"ts-node\" src/server.ts",
"test": "ts-node ./src/test/test.ts",
"deploy": "ts-node ./src/ipfs_deploy/deploy.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/archiver": "^5.1.1",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.11.12",
"axios": "^0.24.0",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.3"
},
"dependencies": {
"@tensorflow/tfjs-node-gpu": "^3.12.0",
"archiver": "^5.3.0",
"nodeplotlib": "^0.7.6",
"web3.storage": "^3.5.6"
}
}