-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.4.1",
"@tailwindcss/line-clamp": "^0.2.1",
"@tailwindcss/typography": "^0.4.1",
"@visx/drag": "^2.1.0",
"@visx/gradient": "^2.1.0",
"@visx/responsive": "^2.1.0",
"@visx/shape": "^2.1.0",
"date-fns": "^2.23.0",
"formik": "^2.2.9",
"gray-matter": "^4.0.3",
"next": "11.1.2",
"next-mdx-remote": "^3.0.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"react-toastify": "^8.0.2",
"rough-notation": "^0.5.1",
"sharp": "^0.29.0",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/react": "17.0.19",
"@types/tailwindcss": "^2.2.1",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"autoprefixer": "^10.3.4",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"postcss": "^8.3.6",
"prettier": "2.3.2",
"tailwindcss": "^2.2.9",
"typescript": "4.4.2"
}
}