-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
159 lines (159 loc) · 5.48 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "remix-nestjs",
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"prebuild:server": "nest build",
"build:server": "esbuild --platform=node --format=cjs ./server.ts --outdir=build",
"start:nestjs": "nest start",
"start:nestjs:dev": "nest start --watch",
"dev": "run-p dev:*",
"dev:server": "cross-env NODE_ENV=development node --inspect --require ./node_modules/dotenv/config --require ./mocks ./build/server.js",
"dev:build": "cross-env NODE_ENV=development npm run build:server -- --watch",
"dev:remix": "cross-env NODE_ENV=development remix watch",
"dev:css": "cross-env NODE_ENV=development npm run generate:css -- --watch",
"docker": "docker-compose up -d",
"generate:css": "tailwindcss -o ./app/styles/tailwind.css",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:fix": "eslint --cache --cache-location ./node_modules/.cache/eslint . --fix --color",
"format": "prettier --write .",
"stylelint": "stylelint **/*.{css,less,sass,scss,styl}",
"stylelint:fix": "stylelint **/*.{css,less,sass,scss,styl} --fix",
"setup": "prisma migrate dev && prisma db seed",
"start": "cross-env NODE_ENV=production node ./build/server.js",
"start:pm2": "pm2 start",
"start:mocks": "cross-env NODE_ENV=production node --require ./mocks --require dotenv/config ./build/server.js",
"test": "vitest",
"pretest:e2e:dev": "npm run build",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 \"cypress open\"",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test start:mocks http://localhost:8811 \"cypress run\"",
"typecheck": "tsc -b && tsc -b cypress",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run"
},
"dependencies": {
"@codesandbox/sandpack-react": "^0.19.6",
"@headlessui/react": "^1.6.1",
"@heroicons/react": "^1.0.6",
"@hookform/resolvers": "^2.8.8",
"@nestjs/apollo": "^10.0.11",
"@nestjs/axios": "^0.0.7",
"@nestjs/common": "^8.4.4",
"@nestjs/config": "^2.0.0",
"@nestjs/core": "^8.4.4",
"@nestjs/graphql": "^10.0.11",
"@nestjs/jwt": "^8.0.0",
"@nestjs/mapped-types": "^1.0.1",
"@nestjs/passport": "^8.2.1",
"@nestjs/platform-express": "^8.4.4",
"@nestjs/schedule": "^1.1.0",
"@nestjs/serve-static": "^2.2.2",
"@nestjs/swagger": "^5.2.1",
"@prisma/client": "^3.13.0",
"@remix-run/express": "1.4.3",
"@remix-run/node": "1.4.3",
"@remix-run/react": "1.4.3",
"@remix-run/server-runtime": "1.4.3",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.1",
"@tailwindcss/typography": "^0.5.2",
"bcryptjs": "^2.4.3",
"chalk": "4.1.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"clsx": "^1.1.1",
"compression": "^1.7.4",
"cron-validate": "^1.4.3",
"cross-env": "^7.0.3",
"dayjs": "^1.11.2",
"express": "^4.18.1",
"fast-glob": "^3.2.11",
"fs-extra": "^10.1.0",
"graphql": "^16.5.0",
"graphql-scalars": "^1.17.0",
"graphql-subscriptions": "^2.0.0",
"highlight.js": "^11.5.1",
"lodash": "^4.17.21",
"methods": "^1.1.2",
"mime-types": "^2.1.35",
"multer": "^1.4.4",
"nestjs-pino": "^2.5.2",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pino-http": "^7.0.0",
"pino-pretty": "^7.6.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.31.0",
"reflect-metadata": "^0.1.13",
"rehype-highlight": "^5.0.2",
"remark-mdx-frontmatter": "^1.1.1",
"remark-toc": "^8.0.1",
"rxjs": "^7.5.5",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@faker-js/faker": "^6.3.1",
"@kunlunjs/fabric": "^0.2.4",
"@nestjs/cli": "^8.2.5",
"@nestjs/testing": "^8.4.4",
"@remix-run/dev": "1.4.3",
"@remix-run/eslint-config": "1.4.3",
"@testing-library/cypress": "^8.0.2",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.1.1",
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cookie": "^0.5.1",
"@types/eslint": "^8.4.2",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.31",
"@types/prettier": "^2.6.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@types/supertest": "^2.0.12",
"@vitejs/plugin-react": "^1.3.2",
"autoprefixer": "^10.4.7",
"c8": "^7.11.2",
"cookie": "^0.5.0",
"cypress": "^9.6.1",
"dotenv": "^16.0.0",
"esbuild": "^0.14.38",
"eslint": "^8.15.0",
"happy-dom": "^3.1.1",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"msw": "^0.39.2",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"pm2": "^5.2.0",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"prisma": "^3.13.0",
"start-server-and-test": "^1.14.0",
"stylelint": "^14.8.2",
"supertest": "^6.2.3",
"tailwindcss": "^3.0.24",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4",
"vite": "^2.9.8",
"vite-tsconfig-paths": "^3.4.1",
"vitest": "^0.11.0"
},
"engines": {
"node": ">=16"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
}
}