-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1006 Bytes
/
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
{
"name": "keystone-react-todo-demo",
"version": "1.0.0",
"private": true,
"scripts": {
"postinstall": "keystone-next postinstall",
"site:dev": "next dev -p 8000",
"site:build": "next build",
"site:start": "next start -p 8000",
"api:dev": "keystone-next dev",
"start": "keystone-next start",
"build": "keystone-next prisma migrate deploy && keystone-next build"
},
"dependencies": {
"@keystone-next/auth": "26.0.0",
"@keystone-next/fields": "^10.0.0",
"@keystone-next/keystone": "^19.0.0",
"classnames": "^2.3.1",
"graphql": "^15.5.0",
"next": "^10.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"urql": "^2.0.3"
},
"devDependencies": {
"@tailwindcss/forms": "^0.3.3",
"@types/react": "17.0.10",
"autoprefixer": "^10.0.4",
"postcss": "^8.1.10",
"tailwindcss": "^2.1.1",
"typescript": "4.3.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
}
}