-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"name": "social-games-finder",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "tsc --noEmit && next lint && npm run prettier",
"lint:tsc": "tsc --noEmit",
"prettier": "prettier --check --ignore-path .gitignore ./src",
"prettify": "prettier --write --ignore-path .gitignore ./src"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mantine/core": "^7.3.1",
"@mantine/form": "^7.3.1",
"@mantine/hooks": "^7.3.1",
"@mantine/notifications": "^7.3.2",
"@tabler/icons-react": "^2.42.0",
"@vercel/analytics": "^1.1.1",
"@vercel/speed-insights": "^1.0.1",
"classnames": "^2.3.2",
"file-saver": "^2.0.5",
"firebase": "^10.7.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"react-flip-toolkit": "^7.1.0",
"swr": "^2.2.5"
},
"devDependencies": {
"@types/file-saver": "^2.0.7",
"@types/lodash": "^4.14.202",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"firebase-admin": "^12.0.0",
"postcss": "^8.4.31",
"postcss-preset-mantine": "^1.11.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.1.0",
"typescript": "^5"
}
}