-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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": "costofbanking",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:staged": "git diff --diff-filter=d --name-only --cached | grep '.tsx' | tr '\\n' ' ' | xargs -L1 eslint",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.0",
"autoprefixer": "^9.8.6",
"lodash": "^4.17.20",
"next": "9.5.4",
"postcss": "^7.0.35",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "^7.2.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.1"
},
"devDependencies": {
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.5",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.2",
"undefined": "^0.1.0"
},
"lint-staged": {
"pages/**/*.{ts,tsx, js, jsx}": "npm run lint:staged",
"lib/**/*.{ts,tsx, js, jsx}": "npm run lint:staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}