-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.2 KB
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
{
"name": "memebot-server",
"version": "0.1.1",
"private": true,
"scripts": {
"build": "tsc",
"generate": "prisma generate",
"migrate": "prisma migrate dev",
"dev": "nodemon source/index.ts",
"start": "node build/index.js"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"typings": "source/index",
"prisma": {
"schema": "schema.prisma",
"migrate": "migrations"
},
"engines" : {
"npm" : ">=8.0.0 <9.0.0",
"node" : ">=16.0.0 <17.0.0"
},
"dependencies": {
"@inceptjs/framework": "0.0.29",
"@prisma/client": "4.3.1",
"@tensorflow/tfjs-core": "3.20.0",
"@tensorflow/tfjs-node": "3.20.0",
"@vladmandic/face-api": "1.7.3",
"axios": "1.1.2",
"canvas": "2.10.1",
"discord-interactions": "3.2.0",
"dotenv": "16.0.3",
"ethers": "5.7.1",
"express": "4.18.2",
"form-data": "4.0.0",
"gif-encoder-2": "1.0.5",
"gifuct-js": "2.1.2",
"ipfs-only-hash": "4.0.0",
"web3": "1.8.0"
},
"devDependencies": {
"@types/express": "4.17.14",
"@types/node": "18.7.23",
"@types/node-fetch": "2.6.2",
"nodemon": "2.0.20",
"prisma": "4.3.1",
"ts-node": "10.9.1",
"typescript": "4.8.4"
}
}