-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.18 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.18 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "nexst-tailwind",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "yarn install && run-p dev:*",
"dev:next": "yarn install && next dev",
"dev:path": "pathpida --enableStatic --ignorePath .gitignore --output src/lib --watch",
"build": "pathpida --enableStatic --ignorePath .gitignore --output src/lib && next build",
"start": "next start",
"serve": "run-s build start",
"lint": "next lint",
"prettier": "prettier --check .",
"unit": "jest",
"e2e": "playwright test",
"test": "run-p -l -c --aggregate-output lint prettier unit",
"fix": "run-s -l -c fix:lint fix:prettier",
"fix:lint": "next lint --fix",
"fix:prettier": "prettier --write .",
"env": "vc env pull .env.local",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@mantine/core": "^4.2.11",
"@mantine/dates": "^4.2.11",
"@mantine/form": "^4.2.11",
"@mantine/hooks": "^4.2.11",
"@mantine/modals": "^4.2.11",
"@mantine/next": "^4.2.11",
"@mantine/notifications": "^4.2.11",
"@reduxjs/toolkit": "^1.8.2",
"@types/react-redux": "^7.1.24",
"dayjs": "^1.11.3",
"next": "12.1.5",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-error-boundary": "3.1.4",
"react-redux": "^8.0.2",
"ulid": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@playwright/test": "1.21.1",
"@tailwindcss/forms": "0.5.0",
"@tailwindcss/line-clamp": "0.4.0",
"@tailwindcss/typography": "0.5.2",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.1.1",
"@testing-library/user-event": "14.1.1",
"@types/jest": "27.4.1",
"@types/node": "17.0.30",
"@types/react": "18.0.8",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"autoprefixer": "10.4.5",
"babel-jest": "^28.1.0",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import-access": "1.0.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-sort-destructure-keys": "1.4.0",
"eslint-plugin-tailwindcss": "3.5.0",
"eslint-plugin-testing-library": "5.3.1",
"husky": "^8.0.1",
"jest": "28.0.3",
"jest-environment-jsdom": "^28.1.0",
"lint-staged": "12.4.1",
"npm-run-all": "4.1.5",
"pathpida": "0.18.1",
"postcss": "8.4.13",
"prettier": "2.6.2",
"react-test-renderer": "18.1.0",
"tailwindcss": "3.0.24",
"typescript": "4.6.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty && yarn install && yarn run unit",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix .",
"prettier --write ."
],
"**/*.{json,md,mdx,css,html,yml,yaml,scss}": [
"prettier --write ."
]
}
}