-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 3.34 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": "frikanalen-frontend",
"version": "1.0.0",
"description": "Frikanalen web frontend",
"repository": {
"type": "git",
"url": "https://github.com/Frikanalen/frikanalen.git",
"directory": "packages/frontend"
},
"homepage": "https://frikanalen.no/",
"main": "index.js",
"scripts": {
"dev": "NEXT_PUBLIC_ENV=development next",
"build": "next build",
"start": "next start",
"prettier": "prettier -w src",
"orval": "curl -o ./fkapi.json https://beta.frikanalen.no/api/v2/open-api-spec.json && prettier --write fkapi.json && orval --prettier",
"codegen": "graphql-codegen --config codegen.yml",
"test": "jest",
"prepare": "husky install"
},
"keywords": [],
"author": "Tore Sinding Bekkedal",
"license": "GPL-3.0-or-later",
"dependencies": {
"@apollo/client": "^3.7.16",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.8.1",
"@fontsource-variable/roboto-flex": "^5.0.3",
"@fontsource/roboto-mono": "^5.0.3",
"@fontsource/roboto-serif": "^5.0.3",
"@hookform/error-message": "^2.0.0",
"@hookform/resolvers": "^3.1.1",
"@mui/icons-material": "^5.8.3",
"@mui/lab": "^5.0.0-alpha.134",
"@mui/material": "^5.13.6",
"@radix-ui/react-dropdown-menu": "^2.0.1",
"@radix-ui/react-progress": "^1.0.1",
"@tanstack/react-query": "^4.29.19",
"@uiw/react-md-editor": "^3.14.1",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"date-fns": "^2.28.0",
"graphql": "^16.7.1",
"next": "13.4.12",
"next-remove-imports": "^1.0.6",
"nope-validator": "^1.0.4",
"pino": "^8.14.2",
"pretty-bytes": "^6.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.45.1",
"react-markdown": "^8.0.3",
"react-use": "^17.4.0",
"tus-js-client": "^3.0.1",
"use-tus": "^0.7.0",
"usehooks-ts": "^2.7.1",
"video.js": "^8.3.0",
"videojs-mobile-ui": "^0.7.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/introspection": "4.0.0",
"@graphql-codegen/typed-document-node": "^5.0.1",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@graphql-codegen/typescript-react-apollo": "3.3.7",
"@tailwindcss/typography": "^0.5.8",
"@testing-library/jest-dom": "^5.16.5",
"@types/cookie": "^0.5.1",
"@types/node": "^20.3.2",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/react-transition-group": "^4.4.3",
"@types/video.js": "^7.3.40",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.6.2",
"eslint": "^8.43.0",
"eslint-config-next": "^13.4.7",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": ">=6",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"msw": "^1.2.2",
"orval": "^6.16.0",
"postcss": "^8.4.18",
"prettier": "3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.2.4",
"typescript": "^5.1.6"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}