-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "minus",
"version": "0.0.1",
"description": "Introducing the first downvote-only social platform.",
"author": "T3NED <[email protected]>",
"private": true,
"license": "Apache-2.0",
"scripts": {
"prebuild": "npx rimraf dist",
"build": "npx prisma generate && npx nest build",
"format": "npx prettier --write \"src/**/*.ts\"",
"start": "npx nest start",
"dev": "npx nest start --watch",
"debug": "npx nest start --debug --watch",
"prod": "node dist/main",
"lint": "npx eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"dependencies": {
"@nestjs/common": "^9.0.0",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@prisma/client": "^4.8.1",
"@sendgrid/mail": "^7.7.0",
"@sentry/node": "^7.30.0",
"@sentry/tracing": "^7.30.0",
"@t3ned/env": "^1.0.0",
"@t3ned/snowflake": "^1.0.0",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"dotenv-expand": "^10.0.0",
"geoip-lite": "^1.4.6",
"handlebars": "^4.7.7",
"ioredis": "^5.2.5",
"module-alias": "^2.2.2",
"normalize-email": "^1.1.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"ua-parser-js": "^1.0.32",
"zod": "^3.20.2"
},
"devDependencies": {
"@mermaid-js/mermaid-cli": "^9.3.0",
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/geoip-lite": "^1.4.1",
"@types/node": "^16.0.0",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2",
"prisma": "^4.8.1",
"prisma-erd-generator": "^1.2.5",
"ts-node": "^10.0.0",
"typescript": "^4.7.4"
},
"_moduleAliases": {
"@/*": "dist"
}
}