-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.32 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
{
"name": "task-manager",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"analyze": "cross-env ANALYZE=true next build",
"build:prod": "next build && next-bundle-analyzer"
},
"dependencies": {
"@mantine/core": "^7.16.3",
"@mantine/hooks": "^7.16.3",
"@mantine/notifications": "^7.17.0",
"@mantine/modals": "^7.17.0",
"@tabler/icons-react": "^3.30.0",
"next": "15.1.7",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.2",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"ts-node": "^10.9.2",
"typescript": "^5",
"@next/bundle-analyzer": "^15.1.7",
"critters": "^0.0.20",
"cross-env": "^7.0.3"
}
}