-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
104 lines (104 loc) · 2.95 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": "fe",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"relay": "relay-compiler",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"check-types": "tsc --pretty --noEmit",
"format": "prettier --write .",
"prepare": "husky install",
"storybook": "storybook dev -p 3333",
"build-storybook": "storybook build"
},
"dependencies": {
"@editorjs/code": "^2.7.0",
"@editorjs/editorjs": "^2.26.4",
"@editorjs/header": "^2.6.2",
"@editorjs/image": "^2.6.2",
"@editorjs/list": "^1.7.0",
"@editorjs/paragraph": "^2.8.0",
"@editorjs/table": "^2.0.2",
"@firstcontributions/editorjs-codeflask": "https://github.com/firstcontributions/editorjs-codeflask",
"@react-icons/all-files": "^4.1.0",
"@sentry/nextjs": "^7.37.0",
"dayjs": "^1.11.5",
"form-data": "^4.0.0",
"formidable": "^2.0.1",
"install": "^0.13.0",
"md5": "^2.3.0",
"multiparty": "^4.2.3",
"next": "^13.1.1",
"node-fetch": "^3.2.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-relay": "main",
"react-virtuoso": "^2.18.0",
"relay-runtime": "main",
"simple-oauth2": "^4.3.0",
"string-strip-html": "^9.1.12"
},
"devDependencies": {
"@storybook/addon-essentials": "7.2.3",
"@storybook/addon-interactions": "^7.2.3",
"@storybook/addon-links": "7.2.3",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "7.2.3",
"@storybook/nextjs": "^7.2.3",
"@storybook/react": "^7.2.3",
"@storybook/testing-library": "^0.2.0",
"@tailwindcss/typography": "^0.5.2",
"@types/formidable": "^2.0.5",
"@types/jest": "^29.1.1",
"@types/multiparty": "^0.0.33",
"@types/node": "17.0.15",
"@types/react": "17.0.39",
"@types/react-relay": "^14.1.2",
"@types/relay-runtime": "14.1.4",
"@types/simple-oauth2": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.18.0",
"eslint-config-next": "^13.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-storybook": "^0.5.13",
"graphql": "^16.3.0",
"husky": "^8.0.0",
"jest": "^29.1.2",
"lint-staged": "^13.0.2",
"postcss": "^8.4.28",
"prettier": "^2.7.1",
"relay-compiler": "0.0.0-main-21a896c5",
"relay-test-utils": "^14.0.0",
"storybook": "^7.2.3",
"tailwind-scrollbar": "^2.0.1",
"tailwindcss": "^3.3.3",
"typescript": "4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"eslint"
],
"*.json": [
"prettier --write"
]
},
"resolutions": {
"webpack": "^5"
}
}