-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.59 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
{
"name": "toys-box",
"version": "0.0.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow npm",
"dev": "next dev",
"build": "next build",
"start": "next start",
"code:fix": "eslint . --fix --ignore-path .gitignore && prettier . --write --ignore-path .gitignore",
"code:check": "tsc --noEmit && eslint . --ignore-path .gitignore && prettier . --check --ignore-path .gitignore"
},
"dependencies": {
"@dnd-kit/core": "6.0.8",
"@dnd-kit/sortable": "7.0.2",
"@dnd-kit/utilities": "3.2.1",
"@headlessui/react": "1.7.14",
"@hookform/resolvers": "3.1.0",
"@kaze-style/core": "^0.17.1",
"base64-emoji-parser": "0.1.8",
"crypto-js": "4.1.1",
"dayjs": "1.11.7",
"jotai": "^2.0.4",
"nanoid": "4.0.2",
"next": "13.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.9",
"react-icons": "4.8.0",
"react-textarea-autosize": "8.4.1",
"zod": "3.21.4"
},
"devDependencies": {
"@kaze-style/next-plugin": "^0.17.1",
"@tsconfig/strictest": "2.0.1",
"@types/crypto-js": "4.1.1",
"@types/node": "20.1.0",
"@types/react": "18.2.5",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"autoprefixer": "10.4.14",
"eslint": "8.40.0",
"eslint-config-next": "13.4.1",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-tailwindcss": "3.11.0",
"eslint-plugin-unused-imports": "2.0.0",
"postcss": "8.4.23",
"prettier": "2.8.8",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
}
}