-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.48 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
{
"name": "playcast",
"version": "0.1.0",
"repository": "https://github.com/yverby/playcast.git",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"export": "next build && next export",
"lint": "next lint",
"jest": "jest",
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@mantine/core": "5.10.5",
"@mantine/form": "5.10.5",
"@mantine/hooks": "5.10.5",
"@mantine/next": "5.10.5",
"@next/bundle-analyzer": "^13.2.4",
"@tanstack/react-query": "^4.28.0",
"axios": "^1.3.4",
"country-list": "^2.3.0",
"date-fns": "^2.29.3",
"humanize-duration": "^3.28.0",
"lodash": "^4.17.21",
"next": "13.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-intl": "^6.3.2",
"rss-parser": "^3.12.0",
"zod": "^3.21.4",
"zustand": "^4.3.6"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@next/eslint-plugin-next": "^13.2.4",
"@tanstack/react-query-devtools": "^4.28.0",
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/country-list": "^2.1.1",
"@types/humanize-duration": "^3.27.1",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.9",
"@types/react": "^18.0.29",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"babel-loader": "^9.1.2",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-mantine": "^2.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.10.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}