-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 1.86 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
{
"name": "arkavidia-8.0",
"description": "Frontend Arkavidia 8.0",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"prepare": "husky install",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{html,css,less,ejs}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@headlessui/react": "^1.7.3",
"@radix-ui/react-checkbox": "^1.0.1",
"@radix-ui/react-icons": "^1.1.1",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.2",
"@types/react-dom": "^18.0.9",
"axios": "^1.1.3",
"clsx": "^1.2.1",
"next": "^12.1.5",
"next-redux-wrapper": "^7.0.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-dropzone": "^14.2.3",
"react-redux": "^8.0.5",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.1",
"swiper": "^8.4.4",
"tslib": "^2.4.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/node": "^14.17.4",
"@types/react": "^18.0.25",
"@types/react-redux": "^7.1.24",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.43.0",
"autoprefixer": "^10.4.4",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.12",
"prettier": "^2.7.1",
"tailwind-scrollbar": "^2.0.1",
"tailwindcss": "^3.0.24",
"tailwindcss-text-fill-stroke": "^1.1.2",
"typescript": "^4.9.3"
}
}