-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.17 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.17 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "request-network",
"version": "v1.4.18",
"main": "dist/index.js",
"description": "",
"types": "dist/index.d.ts",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/taoshidev/request-network.git"
},
"keywords": [
"Node.js",
"ReqNet",
"Taoshi"
],
"author": "Ken Raleigh / Tom Alperin / Lucas Phan",
"license": "MIT",
"scripts": {
"test": "jest",
"start": "cross-env node -r tsconfig-paths/register dist/index.js",
"dev": "pnpm build && nodemon --exec 'ts-node' src/index.ts",
"build": "rm -rf dist && tsc && cp -r src/views dist/views && cp -r src/public dist/public",
"deploy:staging": "pnpm build && eb deploy request-network-staging --profile taoshi",
"introspect:pg": "drizzle-kit introspect:pg",
"db:generate": "drizzle-kit generate:pg",
"db:push": "drizzle-kit push:pg --config=drizzle.config.ts",
"db:drop": "drizzle-kit drop --config=drizzle.config.ts",
"db:migrate": "cross-env MIGRATE=true node -r tsconfig-paths/register dist/db/migrate.js"
},
"dependencies": {
"@sentry/node": "^8.5.0",
"@sentry/profiling-node": "^8.5.0",
"@supabase/supabase-js": "^2.40.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/node": "^20.11.30",
"@types/node-cron": "^3.0.11",
"@types/supertest": "^6.0.2",
"axios": "^1.6.8",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.6",
"ejs": "^3.1.10",
"ethers": "^6.11.1",
"express": "^4.19.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"node-cron": "^3.0.3",
"postgres": "^3.4.4",
"stripe": "^15.7.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.3",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.4",
"@types/luxon": "^3.4.2",
"@types/stripe": "^8.0.417",
"drizzle-kit": "^0.20.14",
"jest": "^29.7.0",
"morgan": "^1.10.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.4"
}
}