-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.4 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
{
"name": "prob-rand",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "npx husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npx eslint .",
"lint:fix": "npx eslint --fix .",
"format": "npx prettier --write .",
"test": "jest --env=jsdom --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@iconify/react": "^4.1.1",
"@monaco-editor/react": "^4.6.0",
"@types/nprogress": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"antd": "^5.11.0",
"better-react-mathjax": "^2.0.3",
"classnames": "^2.3.2",
"dayjs": "^1.11.10",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"jest-html-reporters": "~3.0.11",
"next": "13.5.4",
"nprogress": "^0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^2.2.4",
"vercel": "^33.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@storybook/addon-essentials": "^7.6.6",
"@storybook/addon-interactions": "^7.6.6",
"@storybook/addon-links": "^7.6.6",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.6",
"@storybook/nextjs": "^7.6.6",
"@storybook/react": "^7.6.6",
"@storybook/test": "^7.6.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.1.2",
"@types/node": "20.8.6",
"@types/react": "18.2.28",
"@types/react-dom": "18.2.13",
"autoprefixer": "^10.4.16",
"babel-jest": "^29.1.2",
"eslint": "8.51.0",
"eslint-config-next": "13.5.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.31",
"storybook": "^7.6.6",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.0.3",
"typescript": "5.2.2"
},
"lint-staged": {
"**/*.{json,css,scss,md}": [
"npx prettier --write"
],
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
}
}