-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.17 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
{
"name": "gullah",
"version": "1.0.0",
"scripts": {
"start": "blitz start",
"studio": "blitz db studio",
"build": "blitz build",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "jest",
"test:watch": "jest --watch"
},
"browserslist": [
"defaults"
],
"prettier": {
"semi": false,
"printWidth": 100
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged",
"pre-push": "blitz test"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@prisma/cli": "2.5.1",
"@prisma/client": "2.5.1",
"blitz": "0.19.0",
"cloudinary": "1.23.0",
"final-form": "4.20.1",
"form-data": "3.0.0",
"isomorphic-unfetch": "3.0.0",
"react": "0.0.0-experimental-33c3af284",
"react-dom": "0.0.0-experimental-33c3af284",
"react-dropzone": "11.1.0",
"react-error-boundary": "2.3.1",
"react-final-form": "6.5.1",
"react-toastify": "6.0.8",
"rsuite": "4.8.1",
"secure-password": "4.0.0",
"styled-components": "5.1.1",
"superjson": "1.2.1",
"zod": "1.10.3"
},
"devDependencies": {
"@testing-library/jest-dom": "5.11.4",
"@testing-library/react": "10.4.9",
"@testing-library/react-hooks": "3.4.1",
"@types/jest": "26.0.10",
"@types/react": "16.9.48",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"@zeit/next-css": "1.0.1",
"@zeit/next-less": "1.0.1",
"babel-eslint": "10.1.0",
"babel-plugin-styled-components": "1.11.1",
"eslint": "7.7.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.0",
"husky": "4.2.5",
"jest": "26.4.2",
"jest-environment-jsdom-fourteen": "1.0.1",
"jest-watch-typeahead": "0.6.0",
"less": "3.12.2",
"lint-staged": "10.2.13",
"prettier": "2.1.1",
"pretty-quick": "2.0.2",
"react-test-renderer": "16.13.1",
"ts-jest": "26.3.0",
"typescript": "3.9.7"
},
"private": true
}