generated from UnBArqDsw2021-2/RepositorioTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.17 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
{
"name": "2021.2_g2_kilimpinho_frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint": "eslint \"**/*.+(js|jsx|ts|tsx)\"",
"eslint:fix": "eslint --fix \"**/*.+(js|jsx|ts|tsx)\"",
"prettier": "prettier --check \"**/*.+(js|jsx|ts|tsx|json|yml|yaml|md|css)\"",
"prettier:fix": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|yml|yaml|md|css)\"",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"dependencies": {
"@types/nprogress": "^0.2.0",
"@types/react-input-mask": "^3.0.1",
"@types/react-star-rating-component": "^1.4.1",
"@types/reflexbox": "^4.0.4",
"@types/styled-components": "^5.1.24",
"axios": "^0.26.1",
"babel-plugin-styled-components": "^2.0.6",
"chart.js": "^3.7.1",
"next": "12.1.0",
"next-auth": "^4.3.2",
"nextjs-progressbar": "^0.0.14",
"nprogress": "^0.2.0",
"react": "17.0.2",
"react-chartjs-2": "^4.1.0",
"react-dom": "17.0.2",
"react-hook-form": "^7.27.1",
"react-icons": "^4.3.1",
"react-input-mask": "^2.0.4",
"react-number-format": "^4.9.1",
"react-star-ratings": "^2.3.0",
"react-toastify": "^8.2.0",
"reflexbox": "^4.0.6",
"styled-components": "^5.3.3",
"swr": "^1.2.2"
},
"devDependencies": {
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@types/react-star-ratings": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"typescript": "4.6.2"
},
"lint-staged": {
"./*/**/*.{js,jsx,ts,tsx}": [
"npm run prettier:fix",
"npm run eslint:fix"
],
"*.{json,md}": [
"npm run prettier:fix"
]
}
}