forked from learn-anything/learn-anything
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.28 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
{
"name": "blitz-learn-anything",
"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": {
"@chakra-ui/react": "1.6.5",
"@emotion/react": "11.4.0",
"@prisma/client": "2.26.0",
"@emotion/styled": "11.3.0",
"autoprefixer": "10",
"blitz": "0.38.2",
"final-form": "4.20.2",
"framer-motion": "4.1.17",
"postcss": "8",
"react": "alpha",
"react-dom": "alpha",
"react-final-form": "6.5.3",
"tailwindcss": "2.1.2",
"zod": "3.2.0"
},
"devDependencies": {
"@types/preview-email": "2.0.0",
"@types/react": "17.0.13",
"eslint": "7.29.0",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"prettier": "2.3.2",
"prettier-plugin-prisma": "0.13.2",
"pretty-quick": "3.1.1",
"preview-email": "3.0.4",
"prisma": "2.26.0",
"typescript": "~4.3"
},
"private": true
}