This repository was archived by the owner on Apr 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.86 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.86 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
{
"name": "control-plane",
"version": "1.0.0",
"scripts": {
"dev": "blitz dev",
"build": "blitz build",
"start": "blitz start",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@blitzjs/auth": "2.0.0-beta.19",
"@blitzjs/next": "2.0.0-beta.2",
"@blitzjs/rpc": "2.0.0-beta.2",
"@emotion/react": "11.10.4",
"@emotion/server": "11.10.0",
"@mantine/core": "5.2.4",
"@mantine/dates": "5.2.4",
"@mantine/form": "5.2.4",
"@mantine/hooks": "5.2.4",
"@mantine/next": "5.2.4",
"@mantine/prism": "5.2.4",
"@prisma/client": "4.7.1",
"@tabler/icons": "1.91.0",
"blitz": "2.0.0-beta.19",
"dayjs": "1.11.5",
"final-form": "4.20.7",
"next": "12.2.5",
"prisma": "4.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-final-form": "6.5.9",
"react-final-form-listeners": "1.0.3",
"zod": "3.17.3"
},
"devDependencies": {
"@next/bundle-analyzer": "13.0.6",
"@testing-library/jest-dom": "5.16.3",
"@types/jest": "27.4.1",
"@types/node": "17.0.16",
"@types/preview-email": "2.0.1",
"@types/react": "18.0.17",
"@typescript-eslint/eslint-plugin": "5.30.5",
"eslint": "7.32.0",
"eslint-config-next": "12.2.0",
"eslint-config-prettier": "8.5.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.1.7",
"prettier": "^2.5.1",
"prettier-plugin-prisma": "3.8.0",
"pretty-quick": "3.1.3",
"preview-email": "3.0.7",
"ts-jest": "28.0.7",
"typescript": "^4.5.3"
},
"private": true
}