-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.02 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.02 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
63
64
65
66
{
"name": "snapod-nodejs",
"private": true,
"version": "0.0.1",
"description": "Snapod Node.js Backend",
"main": "app.ts",
"scripts": {
"dev": "export NODE_ENV=development; nodemon --config nodemon.json",
"build": "export NODE_ENV=production; prisma generate && prisma migrate deploy && tsc",
"start": "export NODE_ENV=production; node dist/app.js",
"release:aws": "sh ./scripts/aws-release.sh",
"upgrade": "ncu -u && npm install",
"clean": "rm -rf node_modules && rm package-lock.json"
},
"repository": "git@github.com:Snapodcast/snapod-nodejs.git",
"author": "HelipengTony <tony.hlp@hotmail.com>",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@prisma/client": "^4.0.0",
"apollo-server-koa": "^3.5.0",
"class-validator": "^0.12.2",
"cuid": "^2.1.8",
"dotenv": "^10.0.0",
"duration-calculator": "^0.0.4",
"graphql": "^15.3.0",
"graphql-scalars": "^1.14.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-jwt": "^4.0.3",
"koa-multer": "^1.0.2",
"koa-ratelimit": "^5.0.1",
"koa-router": "^10.1.1",
"netlify": "^8.0.0",
"nodemailer": "^6.6.3",
"pbkdf2": "^3.1.2",
"prisma": "^4.0.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"rss-parser": "^3.12.0",
"turndown": "^7.1.1",
"type-graphql": "^1.1.1",
"typedi": "^0.10.0",
"typescript": "^4.5.4",
"validator": "^13.7.0"
},
"devDependencies": {
"@swc/core": "^1.2.215",
"@swc/helpers": "^0.4.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.5",
"@types/koa-ratelimit": "^4.2.4",
"@types/koa-router": "^7.4.4",
"@types/node": "^17.0.4",
"@types/nodemailer": "^6.4.4",
"@types/pbkdf2": "^3.1.0",
"@types/turndown": "^5.0.1",
"@types/uuid": "^8.3.3",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"regenerator-runtime": "^0.13.9",
"ts-node": "^10.4.0",
"typescript-transform-paths": "^3.3.1"
}
}