forked from garageScript/c0d3-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 4.72 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "c0d3",
"private": "true",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"db:init": "prisma migrate reset",
"db:seed": "prisma db seed --preview-feature",
"db:up": "docker-compose --file docker/docker-compose.yml up --detach postgres",
"db:down": "docker-compose --file docker/docker-compose.yml down",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js --ext .ts --ext .tsx --ext .mdx",
"lint:fix": "yarn lint --fix && prettier --write scss",
"autofix": "yarn lint:fix && svgo --folder=public --recursive && svgo --folder=assets --recursive",
"storybook": "start-storybook -p $STORY_PORT -c .storybook -s ./public",
"build-storybook": "build-storybook -c .storybook -s ./public",
"test": "cross-env TZ=UTC jest --coverage --runInBand",
"ts-node": "ts-node --compiler-options {\\\"module\\\":\\\"CommonJS\\\"}",
"type-check": "tsc",
"generate": "graphql-codegen --config codegen.yml && node scripts/ignoreCodegenIndex.js",
"postinstall": "node scripts/prismaUtils.js setup && prisma generate",
"prepare": "husky install",
"vercel-build": "node scripts/prismaUtils.js migrate && next build"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mdx}": "eslint --fix",
"*.{json,md,scss}": "prettier --write",
"*.svg": "svgo --multipass",
"prisma/schema.prisma": "npx prisma format"
},
"dependencies": {
"@apollo/client": "^3.3.19",
"@primer/octicons-react": "19.8.0",
"@prisma/client": "5",
"@quixo3/prisma-session-store": "3.1.13",
"@sentry/nextjs": "7.46.0",
"apollo-server-micro": "^2.26.1",
"apollo3-cache-persist": "^0.14.1",
"bcrypt": "5.0.0",
"bootstrap": "5.3.2",
"c0d3-diff": "^0.0.9",
"dayjs": "^1.11.10",
"discord.js": "^14.9.0",
"express-session": "^1.17.3",
"formik": "^2.4.5",
"gitdiff-parser": "0.3.0",
"graphql": "^15.8.0",
"graphql-request": "^6.1.0",
"gray-matter": "^4.0.3",
"inspector": "^0.5.0",
"lodash": "^4.17.20",
"markdown-to-jsx": "^7.4.0",
"nanoid": "^3.3.4",
"next": "12",
"next-auth": "^4.24.5",
"next-connect": "1.0.0",
"next-mdx-remote": "^3.0.8",
"nodemailer": "^6.9.8",
"posthog-js": "^1.100.0",
"prism-react-renderer": "2.3.1",
"prismjs": "^1.29.0",
"react": "^17.0.2",
"react-bootstrap": "^2.9.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.10",
"rehype-autolink-headings": "^7.1.0",
"sass": "^1.69.7",
"use-undo": "^1.1.1",
"winston": "^3.11.0",
"yup": "1.3.3"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.0",
"@graphql-codegen/typescript-apollo-client-helpers": "^3.0.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^4.1.0",
"@graphql-codegen/typescript-resolvers": "^4.0.1",
"@jest/types": "^29.5.0",
"@next/eslint-plugin-next": "^14.0.4",
"@storybook/addon-actions": "^7.6.8",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-storyshots": "^6.5.16",
"@storybook/addon-storysource": "^6.5.16",
"@storybook/addon-viewport": "^6.5.14",
"@storybook/react": "^6.4.22",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/bcrypt": "^5.0.0",
"@types/express-session": "^1.17.10",
"@types/lodash": "^4.14.202",
"@types/mdx-js__react": "^1.5.8",
"@types/node": "^16.7.5",
"@types/nodemailer": "^6.4.14",
"@types/prismjs": "^1.26.3",
"@types/react": "^17.0.43",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.18.1",
"babel-jest": "^29.7.0",
"babel-plugin-prismjs": "^2.1.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mdx": "^2.3.2",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "^7.33.2",
"fetch-mock": "^9.11.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-mock-extended": "^3.0.5",
"lint-staged": "^14.0.1",
"prettier": "^3.1.1",
"prisma": "5",
"react-docgen-typescript-plugin": "^1.0.5",
"react-test-renderer": "^17.0.1",
"remark-gfm": "^4.0.0",
"remark-slug": "^7.0.1",
"sass-loader": "^10.5.2",
"storybook-addon-next-router": "^4.0.2",
"svgo": "^3.2.0",
"ts-node": "^10.9.2",
"typescript": "5.3.3"
}
}