forked from garageScript/c0d3-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.5 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
{
"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": "TZ=UTC jest --coverage --runInBand",
"ts-node": "ts-node --compiler-options {\\\"module\\\":\\\"CommonJS\\\"}",
"type-check": "tsc",
"generate": "graphql-codegen --config codegen.yml",
"postinstall": "node scripts/prismaUtils.js setup && prisma generate",
"prepare": "husky install",
"vercel-build": "node scripts/prismaUtils.js migrate && next build"
},
"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": "^17.0.0",
"@prisma/client": "^2.29.1",
"@quixo3/prisma-session-store": "^3.1.3",
"@sentry/nextjs": "^6.19.7",
"apollo-server-micro": "^2.25.3",
"apollo3-cache-persist": "^0.14.0",
"bcrypt": "5.0.0",
"bootstrap": "^5.1.3",
"c0d3-diff": "^0.0.9",
"dayjs": "^1.11.1",
"discord.js": "^12.5.3",
"express-session": "^1.17.1",
"formik": "^2.2.8",
"gitdiff-parser": "^0.2.2",
"graphql": "^15.8.0",
"graphql-request": "^4.2.0",
"gray-matter": "^4.0.3",
"lodash": "^4.17.20",
"markdown-to-jsx": "^7.1.7",
"nanoid": "^3.3.3",
"next": "12",
"next-auth": "^4.3.3",
"next-connect": "^0.12.2",
"next-mdx-remote": "^3.0.8",
"nodemailer": "^6.7.4",
"posthog-js": "^1.20.4",
"prism-react-renderer": "^1.3.1",
"prismjs": "^1.28.0",
"react": "^17.0.2",
"react-bootstrap": "^2.3.1",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"rehype-autolink-headings": "^6.1.0",
"sass": "^1.51.0",
"use-undo": "^1.1.0",
"winston": "^3.7.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.4.5",
"@graphql-codegen/typescript-apollo-client-helpers": "^2.1.15",
"@graphql-codegen/typescript-operations": "^2.3.5",
"@graphql-codegen/typescript-react-apollo": "^3.2.11",
"@graphql-codegen/typescript-resolvers": "^2.6.1",
"@jest/types": "^28.0.2",
"@next/eslint-plugin-next": "^12.1.4",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-storyshots": "^6.4.22",
"@storybook/addon-storysource": "^6.4.22",
"@storybook/addon-viewport": "^6.4.20",
"@storybook/react": "^6.4.22",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.1.1",
"@types/bcrypt": "^5.0.0",
"@types/express-session": "^1.17.4",
"@types/lodash": "^4.14.182",
"@types/mdx-js__react": "^1.5.5",
"@types/node": "^16.7.5",
"@types/nodemailer": "^6.4.4",
"@types/prismjs": "^1.26.0",
"@types/react": "^17.0.43",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^28.0.3",
"babel-plugin-prismjs": "^2.1.0",
"copy-webpack-plugin": "^10.2.4",
"eslint": "^7.32.0",
"eslint-config-next": "^12.1.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mdx": "^1.17.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-mock-extended": "^2.0.5",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"prisma": "^2.29.1",
"react-test-renderer": "^17.0.1",
"remark-gfm": "^3.0.1",
"remark-slug": "^7.0.1",
"remark-toc": "^8.0.1",
"sass-loader": "^10.2.1",
"storybook-addon-next-router": "^3.1.1",
"svgo": "^2.8.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}