-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.76 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
{
"name": "backendapi",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "nodemon --exec ts-node src/index.ts",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"migration-create": "npm run typeorm migration:create -- -n thinkific",
"migration-generate": "npm run typeorm migration:generate -- -n thinkific",
"migration-run": "npm run typeorm migration:run",
"deploy": "git add . && git commit -m Heroku && git push heroku master"
},
"engines": {
"node": "12"
},
"main": "dist/index.ts",
"dependencies": {
"@sendgrid/mail": "^7.4.4",
"@types/express-session": "^1.17.4",
"@types/firebase": "^3.2.1",
"@types/uuid": "^8.3.0",
"aws-sdk": "^2.931.0",
"axios": "^0.24.0",
"connect-typeorm": "^1.1.4",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"cuid": "^2.1.8",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"express-session": "^1.17.2",
"express-validator": "^6.10.0",
"firebase": "^8.6.1",
"firebase-admin": "^9.2.0",
"jsonwebtoken": "^8.5.1",
"nanoid": "^3.1.22",
"pascal-case": "^3.1.2",
"pg": "^8.6.0",
"pubnub": "^4.32.1",
"reflect-metadata": "^0.1.13",
"string-sanitizer": "^1.1.1",
"stripe": "^8.191.0",
"ts-node": "^9.1.1",
"typeorm": "^0.2.32",
"typeorm-store": "^2.0.0",
"typescript": "^4.2.4",
"uniqid": "^5.3.0",
"uuid": "^8.3.2",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-rate-limit": "^5.1.2",
"@types/jsonwebtoken": "^8.5.2",
"@types/node": "^14.17.3",
"@types/pubnub": "^4.29.2",
"@types/uniqid": "^5.3.0",
"nodemon": "^2.0.7"
},
"private": true
}