-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
83 lines (83 loc) · 2.86 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
{
"name": "adottami-web",
"version": "0.0.0",
"repository": "git@github.com:es-2021-2-grupo-2/adottami-web.git",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext js,jsx,ts,tsx --cache",
"style": "prettier --loglevel warn --ignore-unknown --no-error-on-unmatched-pattern",
"style:check": "yarn style --check",
"style:format": "yarn style --write",
"test": "node --expose-gc --no-compilation-cache ./node_modules/jest/bin/jest --logHeapUsage",
"test:ci": "yarn test --maxWorkers=100%",
"types:check": "tsc --pretty --noEmit",
"pre:commit": "lint-staged",
"pre:push": "concurrently \"yarn types:check\" \"yarn lint . --max-warnings 0\" \"yarn style:check .\" \"yarn test --maxWorkers=50%\"",
"prepare": "husky install"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^0.1.6",
"@radix-ui/react-label": "^0.1.5",
"@radix-ui/react-radio-group": "^0.1.5",
"@radix-ui/react-select": "^0.1.1",
"@stitches/react": "^1.2.8",
"axios": "^0.27.2",
"clsx": "^1.2.0",
"formik": "^2.2.9",
"next": "12.1.6",
"next-pwa": "^5.5.4",
"phosphor-react": "^1.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.1",
"react-toastify": "^9.0.5",
"sharp": "^0.30.7",
"vanilla-masker": "^1.2.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@testing-library/dom": "^8.14.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.3",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/react-test-renderer": "^18.0.0",
"@types/vanilla-masker": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"autoprefixer": "^10.4.7",
"concurrently": "^7.2.2",
"eslint": "^8.18.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-watch-typeahead": "^1.1.0",
"lint-staged": "^13.0.2",
"msw": "^0.42.3",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"react-test-renderer": "^18.2.0",
"resize-observer-polyfill": "^1.5.1",
"tailwind-scrollbar": "adoxography/tailwind-scrollbar#pull/36/head",
"tailwindcss": "^3.1.4",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}