forked from qin-salon/qin-memo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.41 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
{
"name": "qin-memo",
"version": "0.0.1",
"license": "CC-BY-NC-SA-4.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "run-p -l -c --aggregate-output lint:*",
"lint:eslint": "eslint --cache .",
"lint:prettier": "prettier --check .",
"fix": "run-s -l -c fix:eslint fix:prettier",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write",
"test": "run-p -l -c --aggregate-output lint:* unit",
"unit": "jest",
"env": "vc env pull .env.local",
"prepare": "husky install"
},
"prettier": {
"printWidth": 120
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"dependencies": {
"@headlessui/react": "1.5.0",
"@heroicons/react": "1.0.6",
"@tailwindcss/forms": "0.5.0",
"@tailwindcss/line-clamp": "0.3.1",
"@tailwindcss/typography": "0.5.2",
"clsx": "1.1.1",
"date-fns": "2.28.0",
"firebase": "9.6.8",
"firebase-admin": "10.0.2",
"interweave": "13.0.0",
"interweave-autolink": "5.0.0",
"next": "12.1.0",
"next-firebase-auth": "1.0.0-canary.1",
"next-seo": "5.1.0",
"next-themes": "0.1.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.28.0",
"react-hot-toast": "2.2.0",
"react-textarea-autosize": "8.3.3",
"swr": "1.2.2",
"use-debounce": "7.0.1"
},
"devDependencies": {
"@testing-library/react": "12.1.4",
"@types/jest": "27.4.1",
"@types/node": "17.0.21",
"@types/react": "17.0.40",
"@typescript-eslint/eslint-plugin": "5.15.0",
"@typescript-eslint/parser": "5.15.0",
"autoprefixer": "10.4.3",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-import-access": "1.0.1",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-tailwindcss": "3.5.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.3.5",
"msw": "0.39.2",
"npm-run-all": "4.1.5",
"postcss": "8.4.11",
"prettier": "2.6.0",
"tailwindcss": "3.0.23",
"typescript": "4.6.2"
},
"msw": {
"workerDirectory": "public"
},
"lint-staged": {
"*.{ts,tsx}": "yarn fix:eslint",
"*": "yarn fix:prettier"
}
}