-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"private": true,
"scripts": {
"dev": "concurrently npm:dev:*",
"dev:next": "next dev",
"dev:path": "pathpida --ignorePath .gitignore --watch",
"build": "pathpida --ignorePath .gitignore && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@mantine/core": "4.2.8",
"@mantine/hooks": "4.2.8",
"@mantine/next": "4.2.8",
"next": "12.1.7-canary.33",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-error-boundary": "3.1.4"
},
"devDependencies": {
"@types/node": "17.0.41",
"@types/react": "18.0.12",
"autoprefixer": "10.4.7",
"concurrently": "7.2.1",
"eslint": "8.17.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "8.5.0",
"pathpida": "0.18.1",
"postcss": "8.4.14",
"prettier": "2.6.2",
"prettier-plugin-tailwindcss": "0.1.11",
"tailwindcss": "3.1.1",
"typescript": "4.7.3"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
}