-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "arabam-redesign-nextjs",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .ts,.tsx",
"icon": "npx @svgr/cli public/images/icons -d src/assets/icons --icon --typescript --replace-attr-values \"#fff=currentColor\""
},
"dependencies": {
"hamburger-react": "^2.5.0",
"next": "^14.1.1",
"react": "^18.2.0",
"react-collapse": "^5.1.0",
"react-dom": "^18.2.0",
"react-responsive": "^8.2.0",
"react-select": "^5.8.0",
"react-tabs": "^6.0.2",
"styled-components": "^5.2.1",
"swiper": "^6.4.10"
},
"devDependencies": {
"@svgr/cli": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@types/node": "^14.14.16",
"@types/react": "^17.0.0",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-plugin-inline-react-svg": "^2.0.2",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.6",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn run lint"
}
}
}