-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
67 lines (67 loc) · 2.04 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
{
"name": "new-quesdon_2",
"version": "0.1.0",
"private": true,
"_moduleAliases": {
"@": "./dist/src",
"@/api": "./dist/src/app/api",
"@/_service": "./dist/src/app/api/_service"
},
"scripts": {
"dev": "source config/local_dev.env && nodemon",
"build": "npm run lint && next build && tsc --project tsconfig.server.json",
"start": "source config/local_dev.env && NODE_ENV=production node -r ./paths-bootstrap.js dist/server.js",
"start:docker": "prisma migrate deploy && NODE_ENV=production node -r ./paths-bootstrap.js dist/server.js",
"lint": "eslint ./src",
"format": "prettier --write ./src",
"prisma": "source config/local_dev.env && prisma migrate dev",
"prisma:studio": "dotenv -e config/local_dev.env -- npx prisma studio"
},
"dependencies": {
"@prisma/client": "^6.0.1",
"axios": "^1.7.9",
"bullmq": "^5.30.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"daisyui": "^4.12.14",
"dotenv-cli": "^7.4.2",
"ioredis": "^5.4.1",
"ip-address": "^10.0.1",
"ip-cidr": "^3.1.0",
"jose": "^5.9.6",
"module-alias": "^2.2.3",
"next": "15.0.3",
"pg": "^8.13.1",
"re2": "^1.21.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.1",
"react-icons": "^5.3.0",
"reflect-metadata": "^0.2.2",
"uuid": "^11.0.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^20.17.6",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"nodemon": "^3.1.7",
"postcss": "^8",
"prettier": "^3.3.3",
"prisma": "^6.0.1",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5",
"typescript-eslint": "^8.15.0"
}
}