-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (47 loc) · 1.35 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
{
"name": "super-simple-chat",
"version": "1.0.0",
"description": "API for simple chat applications",
"main": "index.ts",
"scripts": {
"dev": "nodemon -r dotenv/config src/index.ts",
"start": "ts-node -r dotenv/config src/index.ts",
"lint": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"new-types": "npx supabase gen types typescript --project-id 'qrxgxdvbilytagyequng' --schema public > src/supabase.types.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackbridger/super-simple-chat.git"
},
"keywords": [
"supabase",
"node",
"chat"
],
"author": "Jack Bridger",
"license": "ISC",
"bugs": {
"url": "https://github.com/jackbridger/super-simple-chat/issues"
},
"homepage": "https://github.com/jackbridger/super-simple-chat#readme",
"dependencies": {
"@supabase/supabase-js": "^2.4.1",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"body-parser": "^1.20.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"socket.io": "^4.5.4",
"ts-node": "^10.9.1"
},
"devDependencies": {
"eslint": "^8.32.0",
"nodemon": "^2.0.20",
"typescript": "^4.9.4"
}
}