-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.97 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "marshadow",
"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": "vitest run --passWithNoTests",
"test:watch": "vitest"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@blitzjs/auth": "2.0.0-beta.15",
"@blitzjs/next": "2.0.0-beta.15",
"@blitzjs/rpc": "2.0.0-beta.15",
"@emotion/react": "11.10.6",
"@emotion/server": "11.10.0",
"@legendapp/state": "^1.0.0-rc.13",
"@mantine/core": "6.0.2",
"@mantine/form": "6.0.2",
"@mantine/hooks": "6.0.2",
"@mantine/modals": "6.0.2",
"@mantine/next": "6.0.2",
"@mantine/nprogress": "6.0.2",
"@mantine/prism": "6.0.2",
"@prisma/client": "4.6.0",
"@tabler/icons-react": "2.8.0",
"@vercel/analytics": "0.1.11",
"blitz": "2.0.0-beta.15",
"js-beautify": "1.14.7",
"json-fn": "1.1.1",
"next": "13.2.4",
"passport-github2": "0.1.12",
"prisma": "4.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"secure-password": "4.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "12.0.8",
"@types/js-beautify": "1.13.3",
"@types/node": "18.11.9",
"@types/prettier": "2.7.2",
"@types/preview-email": "2.0.1",
"@types/react": "18.0.25",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@vitejs/plugin-react": "2.2.0",
"eslint": "8.27.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "8.5.0",
"jsdom": "20.0.3",
"lint-staged": "13.0.3",
"prettier": "2.8.7",
"prettier-plugin-prisma": "4.4.0",
"pretty-quick": "3.1.3",
"preview-email": "3.0.7",
"typescript": "^4.8.4",
"vite-tsconfig-paths": "3.6.0",
"vitest": "0.25.3"
},
"private": true
}