-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "tracky-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NEXT_PUBLIC_API=http://localhost:3000 next dev -p 3001",
"dev:prod_api": "next dev --hostname 0.0.0.0 -p 3001",
"build": "next build",
"start": "next start -H 0.0.0.0 -p ${PORT:-8080}",
"lint": "next lint --fix",
"test": "jest",
"test:watch": "jest --watch",
"e2e": "cypress open"
},
"dependencies": {
"@mantine/form": "^6.0.17",
"@mantine/hooks": "^6.0.17",
"@tabler/icons-react": "^2.28.0",
"@tanstack/react-query": "^4.32.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^20.4.2",
"@types/react-dom": "^18.2.7",
"@types/react-modal": "^3.16.0",
"dayjs": "^1.11.9",
"eslint": "8.45.0",
"eslint-config-next": "13.4.11",
"next": "13.4.11",
"query-string": "^8.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-modal": "^3.16.1",
"react-tiny-popover": "^7.2.4",
"ts-jest": "^29.1.1",
"typescript": "5.1.6",
"yup": "^1.2.0",
"zustand": "^4.3.9"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"cypress": "^12.17.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^5.0.0-canary-7118f5dd7-20230705",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"prettier": "^3.0.0"
}
}