-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.66 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
{
"repository": "https://github.com/BrianPurgert/Turings-Test.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",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npm run prettier:check && npm run lint && npm run typecheck"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@mantine/carousel": "5.9.0",
"@mantine/core": "5.9.0",
"@mantine/dates": "5.9.0",
"@mantine/hooks": "5.9.0",
"@mantine/next": "5.9.0",
"@mantine/notifications": "5.9.0",
"@mantine/prism": "5.9.0",
"@next/bundle-analyzer": "^12.3.1",
"@tabler/icons": "^1.107.0",
"@vercel/analytics": "^0.1.6",
"@vercel/examples-ui": "^1.0.4",
"cookies-next": "^2.1.1",
"dayjs": "^1.11.6",
"embla-carousel-react": "^7.0.3",
"next": "latest",
"react": "latest",
"react-cookie": "^4.1.1",
"react-dom": "latest",
"react-wrap-balancer": "^0.1.5"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@next/eslint-plugin-next": "^12.1.4",
"@testing-library/dom": "^8.12.0",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^14.0.4",
"@types/node": "^18.11.4",
"@types/react": "latest",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.4",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"tailwindcss": "^3.0.24",
"typescript": "4.8.4"
}
}