-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.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
{
"name": "keystone-react-todo-demo",
"version": "1.0.0",
"private": true,
"scripts": {
"postinstall": "keystone postinstall && ts-gql build",
"site:dev": "next dev -p 8000",
"site:build": "next build",
"site:start": "next start -p 8000",
"dev": "keystone dev",
"start": "keystone start",
"build": "keystone build",
"migrate": "keystone prisma migrate deploy",
"format": "prettier --write \"**/*.ts\""
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@heroicons/react": "^2.0.12",
"@keystone-6/auth": "^1.0.0",
"@keystone-6/core": "^1.0.1",
"@keystone-6/document-renderer": "^1.0.0",
"@keystone-6/fields-document": "^1.0.1",
"@ts-gql/compiler": "^0.16.3",
"@ts-gql/eslint-plugin": "^0.8.5",
"@ts-gql/next": "^17.0.0",
"@ts-gql/tag": "^0.7.0",
"@typescript-eslint/parser": "^5.15.0",
"classnames": "^2.3.1",
"eslint": "^8.11.0",
"graphql": "^15.6.1",
"next": "^12.1.0",
"node-fetch": "^2.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"@types/react": "17.0.40",
"autoprefixer": "^10.4.12",
"postcss": "^8.4.17",
"prettier": "^2.6.0",
"tailwindcss": "^3.1.8",
"typescript": "4.6.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
},
"ts-gql": {
"schema": "schema.graphql",
"mode": "no-transform"
}
}