-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.25 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
{
"name": "snip-share",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "next lint",
"build-prod": "run-s clean build export",
"build-stats": "cross-env ANALYZE=true npm run build",
"clean": "rimraf .next out",
"build-types": "tsc --noEmit --pretty",
"prepare": "husky install",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"prisma:generate": "prisma generate"
},
"dependencies": {
"@chakra-ui/react": "^1.8.7",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "^3.11.1",
"@uiw/react-textarea-code-editor": "1.4.4",
"formik": "^2.2.9",
"framer-motion": "^6",
"lodash.debounce": "^4.0.8",
"next": "^12.1.2",
"next-auth": "^4.3.1",
"next-remove-imports": "^1.0.6",
"next-seo": "^5.3.0",
"nextjs-progressbar": "^0.0.14",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"timeago.js": "^4.0.2",
"ts-toolbelt": "^9.6.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@next/bundle-analyzer": "^12.1.2",
"@types/lodash.debounce": "^4.0.6",
"@types/next-auth": "^3.15.0",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"cross-env": "^7.0.3",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-config-next": "^12.1.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.1",
"prisma": "^3.11.1",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"license": "MIT",
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}