-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "ixo-cellnode",
"version": "0.1.3",
"description": "ixo service to create a project data store and more",
"repository": "https://github.com/ixofoundation/ixo-cellnode",
"main": "App.ts",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"start": "node ./build/dist/server.js",
"dropdb": "node dist/dropdb.js",
"build": "tsc",
"dev": "npx nodemon",
"seed": "npx ts-node src/seed/seed.ts",
"swagger-gen": "npx ts-node ./src/swagger.ts",
"prisma:dev": "npx prisma migrate dev",
"prisma:reset": "npx prisma migrate reset",
"prisma:generate": "npx prisma generate"
},
"author": "brennon.hampton@gmail.com",
"license": "MIT",
"dependencies": {
"@prisma/client": "^4.5.0",
"@web3-storage/w3up-client": "^12.2.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"helmet": "^6.0.0",
"ipfs-only-hash": "^4.0.0",
"jayson": "^2.1.2",
"node": "^18.15.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typedoc": "^0.23.19",
"typescript": "5.3.3",
"web3.storage": "^4.4.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.21",
"@types/node": "^18.15.10",
"prisma": "^4.5.0"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
}
}