This repository was archived by the owner on Feb 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 KB
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
{
"name": "next-nest-boilerplate",
"version": "2.0.0",
"private": true,
"author": {
"name": "tn"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"generate": "npx prisma generate",
"migrate": "npx prisma migrate dev",
"lint": "next lint"
},
"dependencies": {
"@nestjs/common": "^8.4.1",
"@nestjs/core": "^8.4.1",
"@nestjs/platform-express": "^8.4.1",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "^3.11.0",
"@stitches/react": "^1.2.7",
"avvvatars-react": "^0.4.1",
"class-validator": "^0.13.2",
"formik": "^2.2.9",
"next": "12.1.0",
"next-auth": "^4.3.1",
"nodemailer": "^6.7.2",
"prisma": "^3.11.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rxjs": "^7.5.5",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/plugin-proposal-decorators": "^7.17.7",
"@babel/plugin-transform-react-jsx": "^7.17.3",
"@types/next-auth": "^3.15.0",
"@types/node": "^17.0.21",
"@types/react": "^17.0.40",
"@types/yup": "^0.29.13",
"babel-loader": "^8.2.3",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-parameter-decorator": "^1.0.16",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"reflect-metadata": "^0.1.13",
"typescript": "^4.6.2"
}
}