forked from paljs/prisma-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.33 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
{
"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.4.7",
"@heroicons/react": "1.0.3",
"@paljs/admin": "3.8.0",
"@paljs/nexus": "3.8.0",
"@prisma/client": "2.29.1",
"@tailwindcss/forms": "^0.3.3",
"apollo-server-micro": "3.1.2",
"bcryptjs": "2.4.3",
"cookie": "0.4.1",
"graphql": "15.5.1",
"graphql-tag": "2.12.5",
"jsonwebtoken": "8.5.1",
"micro": "^9.3.4",
"namor": "^2.0.3",
"next": "11.1.0",
"nexus": "1.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"ts-node": "10.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "2.0.1",
"@graphql-codegen/typescript": "2.0.0",
"@graphql-codegen/typescript-operations": "2.0.1",
"@graphql-codegen/typescript-react-apollo": "3.0.0",
"@paljs/cli": "3.8.1",
"@types/bcryptjs": "2.4.2",
"@types/cookie": "0.4.1",
"@types/graphql": "14.5.0",
"@types/jsonwebtoken": "8.5.4",
"@types/node": "16.6.1",
"@types/react": "17.0.18",
"@types/react-dom": "17.0.9",
"@typescript-eslint/eslint-plugin": "4.29.1",
"@typescript-eslint/parser": "4.29.1",
"autoprefixer": "10.3.1",
"babel-plugin-graphql-tag": "3.3.0",
"eslint": "7.32.0",
"eslint-config-next": "^11.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"husky": "7.0.1",
"postcss": "8.3.6",
"prettier": "2.3.2",
"pretty-quick": "3.1.1",
"prisma": "2.29.1",
"tailwindcss": "2.2.7",
"typescript": "4.3.5"
},
"cacheDirectories": [
".next/cache"
],
"repository": "https://github.com/paljs/prisma-admin",
"description": "\"Full stack Prisma, GraphQL, Nexus, Apollo and NextJS with Admin UI to control your Prisma db"
}