-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.11 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "tretori-react",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:test": "NODE_ENV=test next build",
"start": "next start -p $PORT",
"start:test": "NODE_ENV=test next dev",
"test": "react-scripts test",
"eject": "react-scripts eject",
"fmt": "prettier --write src/**/*.{ts,tsx,css} --config ./.prettierrc",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "yarn lint:eslint --fix",
"lint:prettier": "prettier --check -u .",
"lint:errors": "yarn lint:eslint --quiet",
"verify": "yarn tsc && yarn lint && yarn build:test && yarn test",
"verify:quick": "yarn tsc && yarn fmt && yarn lint:fix",
"prepare": "husky install",
"cypress:open": "cypress open",
"cypress:headless": "cypress run",
"test:e2e": "yarn start:test cypress",
"test:e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless",
"test:ci": "next start -p 3000"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@date-io/luxon": "^2.15.0",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@hookform/resolvers": "^2.9.7",
"@joi/date": "^2.1.0",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.10.1",
"@mui/x-date-pickers": "^5.0.0-beta.7",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^18.8.5",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"axios": "^0.27.2",
"dayjs": "^1.11.5",
"dotenv": "^16.0.3",
"eslint": "^8.22.0",
"joi": "^17.6.0",
"luxon": "^3.0.1",
"next": "^12.3.1",
"next-auth": "^4.13.0",
"notistack": "^2.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.34.2",
"recharts": "^2.1.13",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@testing-library/cypress": "^8.0.3",
"@types/luxon": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"cypress": "^10.10.0",
"cypress-social-logins": "^1.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.7",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"nock": "^13.2.9",
"pinst": "^3.0.0",
"prettier": "^2.7.1"
},
"main": "index.js",
"repository": "https://github.com/luigifsl/tretori-front.git",
"author": "tretori-dev",
"license": "MIT"
}