-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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
{
"name": "mis-mascotas",
"version": "1.8.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "pretty-quick .",
"release": "release-it"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"dotenv": "^8.2.0",
"firebase": "^7.15.5",
"firebase-admin": "^8.12.1",
"google-map-react": "^1.1.7",
"next": "9.4.4",
"next-cookies": "^2.0.3",
"next-pwa": "^2.6.3",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-icons": "^3.10.0",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@material-ui/core": "^4.10.2",
"@release-it/conventional-changelog": "^1.1.4",
"@types/node": "^14.0.14",
"@types/react": "^16.9.41",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"polished": "^3.6.5",
"prettier": "^2.0.5",
"react-hook-form": "^5.7.2",
"release-it": "^13.6.3",
"typescript": "^3.9.5"
}
}