forked from WarsWorld/WarsWorld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.06 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "warsworld",
"version": "0.0.0",
"private": true,
"engines": {
"node": "^21.0.0"
},
"scripts": {
"db:up": "docker compose up -d",
"db:destroy": "docker compose down --volumes --remove-orphans",
"prisma:push": "prisma db push",
"prisma:seed": "prisma db seed",
"prisma:reset": "prisma migrate reset",
"prisma:generate-once": "prisma generate",
"prisma:generate-watch": "prisma generate --watch",
"prisma:studio": "prisma studio",
"dev:wss": "cross-env PORT=3001 tsx watch src/server/main-wss-development.ts --tsconfig tsconfig.server.json",
"dev:next": "next dev",
"dev": "npm run prisma:push && concurrently \"npm:dev:*\"",
"lint:eslint": "eslint src --ext \".js,.ts,.tsx\" --cache --report-unused-disable-directives",
"lint:eslint:fix": "npm run lint:eslint --fix",
"lint:prettier": "prettier --check *.* **.yml **.yaml **.md **.json",
"lint:prettier:fix": "prettier --write *.* **.yml **.yaml **.md **.json",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:fix": "npm run lint:prettier:fix && npm run lint:eslint:fix",
"build:next": "cross-env NODE_ENV=production next build",
"build:server": "tsc --project tsconfig.server.json",
"build": "concurrently \"npm:build:*\"",
"start": "cross-env NODE_ENV=production node dist/server/main-production.js",
"jscpd": "npx jscpd --ignore node_modules,dist,public --reporters consoleFull ."
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"prettier": {
"singleQuote": false,
"endOfLine": "auto",
"printWidth": 100
},
"dependencies": {
"@auth/core": "^0.18.6",
"@headlessui/react": "^1.7.17",
"@prisma/client": "^5.7.1",
"@react-hook/window-size": "^3.1.1",
"@tanstack/react-table": "^8.11.2",
"@trpc/client": "^10.44.0",
"@trpc/next": "^10.44.1",
"@trpc/server": "^10.44.0",
"bcrypt": "^5.1.1",
"gray-matter": "^4.0.3",
"next": "^13.5.6",
"next-auth": "^4.24.5",
"pixi.js": "^7.3.2",
"prisma-json-types-generator": "^3.0.3",
"react": "^18.2.0",
"remark": "^14.0.3",
"remark-html": "^15.0.2",
"sass": "^1.69.5",
"superjson": "^1.13.3",
"uuid": "^9.0.1",
"ws": "^8.15.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@stylistic/eslint-plugin-ts": "^1.5.1",
"@types/bcrypt": "^5.0.2",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.32",
"prisma": "^5.7.1",
"tailwindcss": "^3.4.0",
"tsx": "^3.14.0",
"typescript": "^5.3.3"
}
}