-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "next-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"dependencies": {
"@types/react-slick": "^0.23.8",
"classnames": "^2.3.1",
"hoist-non-react-statics": "^3.3.2",
"lodash": "^4.17.21",
"next": "^12.1.5",
"next-translate": "^1.4.0",
"programming-languages-logos": "^0.0.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-slick": "^0.29.0",
"react-transition-group": "^4.4.2",
"recoil": "^0.7.2"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/node": "17.0.31",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"@types/react-transition-group": "^4.4.4",
"autoprefixer": "^10.4.6",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"intercept-stdout": "^0.1.2",
"lint-staged": ">=12.4.1",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"sass": "^1.51.0",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
}
}