-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.41 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "playlist-gen",
"version": "1.0.0",
"scripts": {
"dev": "blitz dev --port $PORT",
"build": "blitz build",
"start": "blitz start",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx . && stylelint app/**/*.css",
"test": "vitest --run",
"test:watch": "vitest",
"prepare": "husky install",
"grammar-gen": "earley-bird compile labelGrammar.ne --outdir app/lib --outfile labelGrammar.ts"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"trailingComma": "all",
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"vitest related --run"
],
"*.css": [
"stylelint --fix"
]
},
"volta": {
"node": "18.18.0"
},
"dependencies": {
"@blitzjs/auth": "2.0.0-beta.34",
"@blitzjs/next": "2.0.0-beta.34",
"@blitzjs/rpc": "2.0.0-beta.34",
"@canac/earley-bird": "^0.0.4",
"@mantine/core": "^7.1.2",
"@mantine/form": "^7.1.2",
"@mantine/hooks": "^7.1.2",
"@mantine/modals": "^7.1.2",
"@mantine/notifications": "^7.1.2",
"@prisma/client": "^5.1.1",
"@tabler/icons-react": "^2.30.0",
"blitz": "2.0.0-beta.34",
"clsx": "2.0.0",
"date-fns": "^2.30.0",
"lodash": "^4.17.21",
"loglevel": "^1.8.1",
"moo": "^0.5.2",
"next": "^13.5.4",
"prisma": "^5.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.5.4",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/lodash": "^4.14.196",
"@types/node": "^20.4.8",
"@types/react": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "^8.46.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.0",
"husky": "^8.0.3",
"jsdom": "22.1.0",
"lint-staged": "^13.2.3",
"postcss": "^8.4.31",
"postcss-preset-mantine": "^1.7.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^2.8.8",
"prettier-plugin-prisma": "^4.17.0",
"pretty-quick": "^3.1.3",
"stylelint": "^15.10.3",
"stylelint-config-idiomatic-order": "^9.0.0",
"typescript": "5.2.2",
"typescript-plugin-css-modules": "^5.0.1",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.1"
},
"private": true
}