-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "ic8l_backend",
"version": "1.0.0",
"main": "src/index.js",
"type": "module",
"scripts": {
"dev": "nodemon src/index.js",
"prod": "NODE_ENV=production node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": {
"name": "Shivam Kumar Jha",
"email": "[email protected]",
"url": "https://github.com/shivamkj"
},
"license": "UNLICENSED",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"dependencies": {
"@supabase/supabase-js": "^2.42.7",
"ajv": "^8.12.0",
"bullmq": "^5.7.6",
"bullMQAdapter": "link:@bull-board/api/bullMQAdapter",
"@bull-board/api": "^5.17.0",
"@bull-board/fastify": "^5.17.0",
"dotenv": "^16.4.5",
"fastify": "^4.26.2",
"jsonwebtoken": "^9.0.2",
"node-cache": "^5.1.2",
"node-fetch": "^3.3.2",
"pg": "^8.11.5",
"socket.io-client": "^4.7.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"knex": "^3.1.0",
"nodemon": "^3.1.0"
}
}