-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.32 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
{
"name": "squishy.live",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:SociableSteve/squishy.live.git",
"license": "MIT",
"scripts": {
"dev": "nodemon src/index.ts",
"migrate": "DATABASE_URL=postgres://ftqawdzzmwupch:f3bacd2b41474f018c0bda816b26e63970fbd58ccd67845a618c6f5db2ae7f76@ec2-54-216-185-51.eu-west-1.compute.amazonaws.com:5432/d16abhpndt84h1?sslmode=require NODE_TLS_REJECT_UNAUTHORIZED=0 node-pg-migrate up",
"migrate:down": "DATABASE_URL=postgres://doadmin:ssz9aw9spejup5j6@squishy-live-dev-do-user-168670-0.b.db.ondigitalocean.com:25060/defaultdb?sslmode=require NODE_TLS_REJECT_UNAUTHORIZED=0 node-pg-migrate down",
"build": "tsc",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.11",
"@types/node": "^14.14.37",
"@types/tmi.js": "^1.7.1",
"@types/ws": "^7.4.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/pg": "^7.14.11",
"@types/uuid": "^8.3.0",
"axios": "^0.21.1",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"node-pg-migrate": "^5.9.0",
"pg": "^8.5.1",
"pug": "^3.0.2",
"tmi.js": "^1.7.5",
"uuid": "^8.3.2",
"ws": "^7.4.4"
}
}