forked from nej1044/LinkGem-FE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.1 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
{
"name": "link-gem",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"build:ssg": "next build && next export",
"build:ssr": "rimraf public/robots.txt public/sitemap*.xml & next build ",
"start": "next start",
"lint": "next lint",
"lint-front": "lint-staged",
"prepare": "npx husky install"
},
"dependencies": {
"@ant-design/icons": "4.7.0",
"@emotion/react": "11.10.0",
"@emotion/styled": "11.10.0",
"@mui/material": "5.9.2",
"@mui/styled-engine-sc": "5.8.0",
"@netlify/plugin-nextjs": "^4.14.1",
"@types/antd": "1.0.0",
"antd": "4.22.6",
"axios": "^0.27.2",
"next": "12.1.0",
"next-sitemap": "^3.1.50",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-fast-marquee": "1.3.2",
"recoil": "^0.7.3",
"styled-components": "5.3.5",
"uuid": "8.3.2"
},
"devDependencies": {
"@svgr/webpack": "6.2.1",
"@types/lodash": "^4.14.191",
"@types/node": "17.0.2",
"@types/react": "17.0.2",
"@types/styled-components": "^5.1.25",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.30.4",
"@typescript-eslint/parser": "5.30.4",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "8.19.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.0",
"eslint-plugin-n": "15.2.4",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"prettier": "^2.6.2",
"typescript": "4.7.4"
},
"resolutions": {
"@types/node": "17.0.2",
"@types/react": "17.0.2"
},
"overrides": {
"@types/node": "17.0.2",
"@types/react": "17.0.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --config ./.prettierrc --write -u"
]
}
}