This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.54 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "dropy-back",
"version": "0.0.1",
"description": "Dropy backend server",
"author": "Dropy team",
"license": "ISC",
"scripts": {
"start": "echo \"Error: OUTDATED COMMAND\" && exit 1",
"api": "npm run build && node dist/services/api/server.js",
"socket": "npm run build && node dist/services/socket/socket.js",
"content": "npm run build && node dist/services/content/server.js",
"dev": "nodemon",
"build": "swc src -d dist --source-maps --copy-files",
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:fix": "npm run lint -- --fix",
"prisma:init": "prisma init",
"prisma:migrate": "prisma migrate dev --preview-feature",
"prisma:generate": "prisma generate",
"migrate:start:api": "npx prisma migrate deploy && npm run api",
"migrate:start:socket": "npx prisma migrate deploy && npm run socket",
"migrate:start:content": "npx prisma migrate deploy && npm run content"
},
"prisma": {
"schema": "src/schema.prisma"
},
"dependencies": {
"@prisma/client": "^4.3.0",
"@types/express-fileupload": "^1.2.2",
"@types/node-pushnotifications": "^1.0.4",
"adm-zip": "^0.5.9",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.3.1",
"form-data": "^4.0.0",
"handlebars": "^4.7.7",
"helmet": "^4.6.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"ngeohash": "^0.6.3",
"node-fetch": "^2.6.7",
"node-pushnotifications": "^2.0.3",
"nodemailer": "^6.8.0",
"socket.io": "^4.5.1",
"swagger-ui-express": "^4.6.0",
"webhook-discord": "^3.7.8"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.247",
"@types/compression": "^1.7.1",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/hpp": "^0.2.1",
"@types/jsonwebtoken": "^8.5.4",
"@types/morgan": "^1.9.3",
"@types/node": "^16.0.1",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"node-config": "^0.0.2",
"node-gyp": "^8.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.3.2",
"prisma": "^4.3.0",
"ts-node": "^10.4.0",
"tsc-alias": "^1.4.1",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.5.2"
}
}