-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "flicks",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "npx ts-node src/server.ts",
"test": "",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts",
"db:migrate:dev": "npx prisma migrate dev",
"db:migrate:deploy": "npx prisma migrate deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@bonfida/spl-name-service": "^1.1.1",
"@metaplex-foundation/js": "^0.19.5",
"@prisma/client": "^5.3.1",
"@solana/web3.js": "^1.78.5",
"axios": "^1.5.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"prisma": "^5.3.1",
"redis": "^4.6.10",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.18",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"prisma": {
"schema": "./src/prisma/schema.prisma"
},
"engines": {
"node": ">=16"
}
}