-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
77 lines (77 loc) · 2.47 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
{
"name": "prisma-admin2",
"version": "0.0.2",
"author": "Ahmed Elywa",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "prisma migrate reset -f && next build",
"start": "next start --port ${PORT-3000}",
"generate": "pal g && yarn generate:prisma && yarn generate:nexus && yarn codegen",
"generate:prisma": "prisma generate",
"generate:nexus": "ts-node --transpile-only -P nexus.tsconfig.json src/server/nexusSchema",
"codegen": "graphql-codegen --config codegen.yml",
"db-dev": "prisma migrate dev",
"ts-node": "ts-node --compiler-options '{\"module\":\"CommonJS\"}'"
},
"dependencies": {
"@apollo/client": "3.7.1",
"@apollo/server": "^4.1.1",
"@apollo/server-plugin-landing-page-graphql-playground": "^4.0.0",
"@as-integrations/next": "^1.2.0",
"@heroicons/react": "2.0.13",
"@paljs/admin": "5.0.3",
"@paljs/nexus": "5.0.2",
"@prisma/client": "4.6.1",
"@tailwindcss/forms": "^0.5.3",
"bcryptjs": "2.4.3",
"cookie": "0.5.0",
"graphql": "16.6.0",
"graphql-tag": "2.12.6",
"jsonwebtoken": "8.5.1",
"namor": "^2.0.4",
"next": "13.0.4",
"nexus": "1.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"ts-node": "10.9.1"
},
"devDependencies": {
"@graphql-codegen/cli": "2.13.12",
"@graphql-codegen/typescript": "2.8.2",
"@graphql-codegen/typescript-operations": "2.5.7",
"@graphql-codegen/typescript-react-apollo": "3.3.6",
"@paljs/cli": "5.0.3",
"@types/bcryptjs": "2.4.2",
"@types/cookie": "0.5.1",
"@types/graphql": "14.5.0",
"@types/jsonwebtoken": "8.5.9",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"autoprefixer": "10.4.13",
"babel-plugin-graphql-tag": "3.3.0",
"eslint": "8.28.0",
"eslint-config-next": "^13.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.11",
"husky": "8.0.2",
"postcss": "8.4.19",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"prisma": "4.6.1",
"tailwindcss": "3.2.4",
"typescript": "4.9.3"
},
"cacheDirectories": [
".next/cache"
],
"prisma": {
"seed": "yarn ts-node prisma/seed.ts"
},
"repository": "https://github.com/paljs/prisma-admin",
"description": "\"Full stack Prisma, GraphQL, Nexus, Apollo and NextJS with Admin UI to control your Prisma db"
}