-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.78 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.78 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
{
"name": "hackability.space",
"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",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"prisma": {
"schema": "db/schema.prisma",
"seed": "ts-node ./db/seeds.ts"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@emotion/react": "11.7.1",
"@emotion/styled": "11.6.0",
"@headlessui/react": "1.4.2",
"@heroicons/react": "1.0.5",
"@prisma/client": "3.6.0",
"@tailwindcss/forms": "0.4.0",
"autoprefixer": "10.4.0",
"blitz": "0.44.3",
"final-form": "4.20.6",
"react": "18.0.0-beta-149b420f6-20211119",
"react-dom": "18.0.0-alpha-5ca4b0433-20211020",
"react-final-form": "6.5.7",
"zod": "3.11.6"
},
"devDependencies": {
"@babel/core": "7.16.5",
"@storybook/addon-actions": "6.4.9",
"@storybook/addon-essentials": "6.4.9",
"@storybook/addon-links": "6.4.9",
"@storybook/react": "6.4.9",
"@types/preview-email": "2.0.1",
"@types/react": "17.0.37",
"babel-loader": "8.2.3",
"eslint": "7.32.0",
"eslint-plugin-storybook": "0.5.3",
"firebase-admin": "10.0.1",
"husky": "7.0.4",
"lint-staged": "11.3.0-beta.2",
"prettier": "2.5.1",
"prettier-plugin-prisma": "3.6.0",
"pretty-quick": "3.1.2",
"preview-email": "3.0.5",
"prisma": "3.6.0",
"tailwindcss": "3.0.0",
"ts-node": "10.4.0",
"typescript": "~4.5"
},
"private": true
}