-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.95 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.95 KB
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
73
74
75
76
77
78
79
{
"name": "yaos",
"version": "0.1.0",
"private": true,
"homepage": "https://proyecto-nutria.github.io/",
"dependencies": {
"@apollo/client": "^3.2.5",
"@auth0/auth0-react": "^1.2.0",
"@date-io/moment": "1.x",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.58",
"@material-ui/pickers": "^3.3.10",
"@types/i18next": "^13.0.0",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-anchor-link-smooth-scroll": "^1.0.1",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.5",
"@types/react-scrollspy": "^3.3.3",
"@types/react-slick": "^0.23.4",
"graphql": "^15.3.0",
"husky": "^7.0.0",
"i18next": "^19.8.7",
"i18next-browser-languagedetector": "^6.0.1",
"i18next-http-backend": "^1.1.0",
"lint-staged": "^11.0.0",
"moment": "^2.29.1",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-animated-slider": "^2.0.0",
"react-dom": "^17.0.2",
"react-i18next": "^11.8.5",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-scrollspy": "^3.4.3",
"react-slick": "^0.28.0",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=14.10.0"
}
}