-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "next-graphql-simple-todo-app",
"version": "0.1.0",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json,css}'"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"printWidth": 100
},
"dependencies": {
"@apollo/client": "^3.5.5",
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.2",
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@prisma/client": "^3.5.0",
"apollo-server-micro": "^3.5.0",
"formik": "^2.2.9",
"framer-motion": "^4.1.17",
"graphql": "^15.7.2",
"micro-cors": "^0.1.1",
"next": "12.0.4",
"nexus": "^1.1.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/micro-cors": "^0.1.2",
"@types/node": "^16.11.10",
"@types/react": "17.0.36",
"eslint": "7.32.0",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.0",
"prisma": "^3.5.0",
"ts-node": "^10.4.0",
"typescript": "4.5.2"
}
}