-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "symphonybackend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc",
"dev": "cross-env NODE_ENV=development nodemon -r dotenv/config src/index.ts",
"prod": "cross-env NODE_ENV=production nodemon -r dotenv/config src/index.ts",
"start": "npx tsx src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"nodemonConfig": {
"ignore": [
"node_modules",
"dist",
"TestBlock"
],
"watch": [
"src",
".env"
]
},
"dependencies": {
"@supabase/supabase-js": "^2.46.1",
"@types/node": "^20.6.0",
"aws-sdk": "^2.1692.0",
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-winston": "^4.2.0",
"lodash": "^4.17.21",
"node-fetch": "^2.7.0",
"nodemailer": "^6.8.0",
"rimraf": "^6.0.1",
"simple-git": "^3.27.0",
"tmux": "^1.0.0",
"vm2": "^3.9.19",
"winston": "^3.8.2",
"zod": "^3.19.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/lodash": "^4.14.191",
"@types/node-fetch": "^2.6.9",
"@types/nodemailer": "^6.4.6",
"cross-env": "^7.0.3",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"tsx": "^4.19.2",
"typescript": "^4.8.3"
}
}