-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.98 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "next-template",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "yarn build:dev && yarn db:deploy && next build",
"build:prisma": "prisma generate",
"build:nexus": "NODE_ENV=development ts-node -P tsconfig.nexus.json --transpile-only src/graphql/schema.ts",
"build:codegen": "graphql-codegen --config codegen.yml",
"build:dev": "yarn build:prisma && yarn build:nexus && yarn build:codegen",
"ci": "yarn build:dev && yarn lint && yarn ts:check",
"db:deploy": "prisma migrate deploy",
"db:migrate": "prisma migrate dev && yarn build:prisma",
"db:reset": "prisma migrate reset",
"db:setup": "yarn db:migrate && yarn prisma generate",
"db:studio": "prisma studio",
"dev": "concurrently -n \"Watchers,Next\" -c \"black.bgYellow.dim,black.bgCyan.dim\" \"yarn watch:all\" \"next dev\"",
"lint": "yarn lint:js && yarn lint:css",
"lint:css": "stylelint '**/*.css'",
"lint:js": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"start": "next start",
"ts:check": "tsc",
"watch:codegen": "yarn build:codegen --watch",
"watch:nexus": "ts-node-dev -P tsconfig.nexus.json --transpile-only --respawn --watch src/graphql/schema.ts,src/prisma/schema.prisma src/graphql/schema.ts",
"watch:all": "concurrently -n \"Nexus,Codegen\" -c \"black.bgGreen.dim,black.bgBlue.dim\" \"yarn watch:nexus\" \"yarn watch:codegen\""
},
"dependencies": {
"@apollo/client": "^3.3.12",
"@draft-js-plugins/editor": "^4.1.0",
"@draft-js-plugins/static-toolbar": "^4.1.0",
"@headlessui/react": "1.4.1",
"@heroicons/react": "^1.0.5",
"@prisma/client": "2.27.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/jit": "^0.1.7",
"@tailwindcss/typography": "^0.4.0",
"algoliasearch": "^4.10.2",
"apollo-server": "^2.21.2",
"apollo-server-micro": "^2.21.2",
"autoprefixer": "^10.2.5",
"cookies": "^0.8.0",
"cross-fetch": "^3.1.4",
"draft-js": "^0.11.7",
"draft-js-export-html": "^1.4.1",
"draft-js-markdown-shortcuts-plugin": "^0.6.1",
"framer-motion": "^4.1.16",
"graphql": "^15.5.0",
"graphql-iso-date": "^3.6.1",
"jsonwebtoken": "^8.5.1",
"next": "^10.1.3",
"next-auth": "^3.11.2",
"next-connect": "^0.10.1",
"next-cookies": "^2.0.3",
"next-s3-upload": "^0.1.4",
"nexus": "1.1.0",
"nexus-prisma": "^0.30.0",
"postcss": "^8.2.8",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-easy-crop": "^3.3.3",
"react-hook-form": "^6.15.4",
"react-instantsearch-dom": "^6.11.2",
"react-toast-notifications": "^2.4.3",
"stylelint-config-recommended": "^4.0.0",
"tailwindcss": "^2.1.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@graphql-codegen/cli": "1.17.6",
"@graphql-codegen/typescript": "1.17.6",
"@graphql-codegen/typescript-operations": "^1.17.6",
"@graphql-codegen/typescript-react-apollo": "1.17.6",
"@graphql-codegen/typescript-resolvers": "1.17.4",
"@react-native-community/eslint-config": "^1.0.0",
"@types/graphql-iso-date": "^3.4.0",
"@types/node": "^14.14.34",
"@types/react": "^17.0.3",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"babel-eslint": "^10.0.1",
"babel-plugin-macros": "^3.0.1",
"babel-plugin-styled-components": "^1.12.0",
"concurrently": "^6.0.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^5.0.2",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-echobind": "^0.2.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^2.2.0",
"prettier": "^2.2.1",
"prisma": "2.28.0",
"react-is": "^17.0.1",
"stylelint": "^13.12.0",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-order": "^4.1.0",
"ts-node-dev": "^1.0.0",
"typescript": "^4.2.3"
}
}