-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.64 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
89
{
"name": "mash-up-recruit-fe",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "cross-env ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"lint:code": "eslint --ext .js,.jsx,.ts,.tsx",
"lint:code-fix": "eslint --fix --ext .js,.jsx,.ts,.tsx",
"prettier:code-fix": "prettier --write",
"lint:style": "stylelint **/*.{ts,tsx}",
"lint:style-fix": "stylelint **/*.{ts,tsx} --fix",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.2.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@next/bundle-analyzer": "^12.1.0",
"aos": "^3.0.0-beta.6",
"axios": "^0.26.0",
"dayjs": "^1.11.10",
"editorjs-html": "^3.4.3",
"lodash-es": "^4.17.21",
"lottie-web": "^5.9.1",
"next": "12.3.4",
"next-auth": "^4.24.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.27.0"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@storybook/addon-actions": "^6.5.0-alpha.39",
"@storybook/addon-essentials": "^6.5.0-alpha.39",
"@storybook/addon-links": "^6.5.0-alpha.39",
"@storybook/builder-webpack5": "^6.5.0-alpha.39",
"@storybook/manager-webpack5": "^6.5.0-alpha.39",
"@storybook/react": "^6.5.0-alpha.39",
"@stylelint/postcss-css-in-js": "0.38.0",
"@svgr/webpack": "^6.2.1",
"@types/aos": "^3.0.4",
"@types/lodash-es": "^4.17.6",
"@types/node": "17.0.12",
"@types/react": "17.0.38",
"@types/react-dom": "^17.0.11",
"babel-loader": "^8.2.3",
"chromatic": "^6.4.3",
"cross-env": "^7.0.3",
"eslint": "8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.3.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.8",
"husky": ">=6",
"lint-staged": ">=10",
"postcss-syntax": "^0.36.2",
"prettier": "^2.5.1",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-styled-components": "^0.1.1",
"typescript": "4.5.5"
},
"engines": {
"node": "^16.x || ^18.x",
"npm": "please-use-yarn",
"yarn": "^1.22.x"
},
"lint-staged": {
"*.json": [
"yarn prettier:code-fix"
],
".*rc": [
"yarn prettier:code-fix"
],
"*.{js,jsx,ts,tsx}": [
"yarn lint:code-fix --cache",
"yarn lint:style-fix --cache"
]
}
}