This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.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
{
"name": "oh2021",
"description": "Web for OH GAMČA 20/21",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"build-stats": "ANALYZE=true npm run build",
"export": "next export -o dist",
"build-prod": "run-s clean build export",
"clean": "rimraf .next dist",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"ts-node": "ts-node -O '{\"module\": \"commonjs\", \"target\": \"ES6\" }'",
"postinstall": "prisma generate"
},
"dependencies": {
"@ant-design/icons": "^4.6.4",
"@prisma/client": "^2.23.0",
"@types/react-calendar": "^3.1.4",
"antd": "^4.8.0",
"axios": "^0.21.1",
"babel-plugin-superjson-next": "^0.2.3",
"bcrypt": "^5.0.1",
"chart.js": "^3.5.1",
"classnames": "^2.2.6",
"date-fns": "^2.18.0",
"easymde": "^2.15.0",
"gray-matter": "^4.0.2",
"mapbox-gl": "^2.5.1",
"next": "^11.1.0",
"next-auth": "^3.13.3",
"next-seo": "^4.20.0",
"openmoji": "^13.1.0",
"qrcode": "^1.4.4",
"react": "^17.0.1",
"react-big-calendar": "^0.33.5",
"react-chartjs-2": "^3.0.4",
"react-dom": "^17.0.1",
"react-google-recaptcha-v3": "^1.8.0",
"react-map-gl": "^6.1.17",
"react-markdown": "^6.0.2",
"react-query": "^3.16.1",
"react-simplemde-editor": "^5.0.1",
"remark-emoji": "^2.2.0",
"remark-gfm": "^1.0.0",
"sass": "^1.35.2",
"styled-jsx-plugin-postcss": "^4.0.1",
"superjson": "^1.7.3",
"swr": "^0.5.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.0.7",
"@types/bcrypt": "^3.0.0",
"@types/next-auth": "^3.7.2",
"@types/node": "^14.17.0",
"@types/qrcode": "^1.4.1",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"autoprefixer": "^10.2.4",
"eslint": "^7.21.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.6",
"prettier": "^2.2.1",
"prisma": "^2.23.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.3.2"
},
"repository": {
"url": "https://github.com/lampask/oh2021"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"eslint"
],
"*.json": [
"prettier --write"
]
},
"license": "MIT"
}