-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
{
"name": "oh-so-pro-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook",
"new-component": "hygen component new"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@apollo/client": "^3.4.16",
"@tailwindcss/aspect-ratio": "^0.3.0",
"@tailwindcss/line-clamp": "^0.2.2",
"@tailwindcss/typography": "^0.4.1",
"date-fns": "^2.25.0",
"deepmerge": "^4.2.2",
"graphql": "^15.6.1",
"lodash": "^4.17.21",
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@storybook/addon-actions": "^6.3.10",
"@storybook/addon-essentials": "^6.3.10",
"@storybook/addon-links": "^6.3.10",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.3.10",
"autoprefixer": "^10.3.7",
"babel-loader": "^8.2.2",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^1.17.0",
"husky": "^7.0.2",
"hygen": "^6.1.0",
"lint-staged": "^11.2.3",
"postcss": "^8.3.9",
"prettier": "^2.4.1",
"storybook-dark-mode": "^1.0.8",
"tailwindcss": "^2.2.16"
}
}