-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.77 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
{
"name": "next-graphql-todo-app",
"version": "0.1.0",
"private": true,
"prisma": {
"seed": "ts-node prisma/seed.ts",
"schema": "src/prisma/schema.prisma"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --dir src",
"lint:fix": "eslint src --ext .js,jsx,.ts,.tsx --fix",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json,css,scss}'",
"test": "jest --watch"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": true,
"printWidth": 100
},
"dependencies": {
"@apollo/client": "^3.4.15",
"@chakra-ui/icons": "^1.0.16",
"@chakra-ui/react": "^1.6.10",
"@emotion/react": "^11.5.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.3",
"@prisma/client": "^3.1.1",
"apollo-server-micro": "^3.3.0",
"formik": "^2.2.9",
"framer-motion": "^4.1.17",
"graphql": "^15.6.0",
"graphql-middleware": "^6.1.8",
"graphql-shield": "^7.5.0",
"micro-cors": "^0.1.1",
"next": "11.1.2",
"next-auth": "^3.29.0",
"nexus": "^1.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "^1.42.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/node": "^16.10.2",
"@types/react": "^17.0.26",
"babel-jest": "^27.3.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"prisma": "^3.1.1",
"react-test-renderer": "^17.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}