forked from madmaxmehdi44/blitzjs-projectmanagement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.39 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
{
"name": "projectmanagement",
"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": {
"@headlessui/react": "1.6.4",
"@heroicons/react": "1.0.6",
"@prisma/client": "latest",
"autoprefixer": "10.4.7",
"blitz": "0.45.4",
"daisyui": "2.19.0",
"final-form": "4.20.7",
"plyr-react": "5.0.2",
"postcss": "8",
"react": "alpha",
"react-dom": "alpha",
"react-final-form": "6.5.9",
"react-icons": "4.4.0",
"react-spinners": "0.13.3",
"source-map-resolve": "0.6.0",
"tailwindcss": "3.1.6",
"theme-change": "2.1.0",
"zod": "3.17.3"
},
"devDependencies": {
"@types/preview-email": "2.0.1",
"@types/react": "17.0.19",
"eslint": "8",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"prettier-plugin-prisma": "4.1.0",
"pretty-quick": "3.1.3",
"preview-email": "3.0.5",
"prisma": "latest",
"typescript": "~4.7.4"
},
"private": true
}