forked from uma-arai/sbcntr-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.5 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": "sbcntr-frontend",
"version": "1.0.0",
"scripts": {
"dev": "npx blitz dev --port 3100",
"start": "npx blitz start --port 3100",
"start:prd": "npx blitz start --port 80",
"studio": "npx blitz console",
"build": "npx blitz build",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"migrate:dev": "npx blitz prisma migrate dev --preview-feature",
"migrate:prd": "npx blitz prisma migrate deploy --preview-feature",
"seed": "npx blitz db seed",
"test": "jest",
"test:watch": "jest --watch"
},
"browserslist": [
"defaults"
],
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": true,
"printWidth": 80
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "tsc && lint-staged && pretty-quick --staged",
"pre-push": "tsc && npm run lint && npm run test"
}
},
"dependencies": {
"@material-ui/core": "4.11.3",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "4.0.0-alpha.57",
"@prisma/client": "~2.19",
"blitz": "0.33.1",
"final-form": "4.20.1",
"isomorphic-unfetch": "3.1.0",
"mui-rff": "3.0.3",
"prisma": "~2.19",
"react": "0.0.0-experimental-3310209d0",
"react-dom": "0.0.0-experimental-3310209d0",
"react-error-boundary": "3.1.0",
"react-final-form": "6.5.2",
"react-icons": "4.1.0",
"secure-password": "4.0.0",
"styled-components": "5.2.1",
"typescript": "4.1.2",
"zod": "1.11.11"
},
"devDependencies": {
"@testing-library/jest-dom": "5.11.6",
"@testing-library/react": "11.2.2",
"@testing-library/react-hooks": "3.5.0",
"@types/jest": "26.0.16",
"@types/react": "17.0.2",
"@types/secure-password": "3.1.0",
"@typescript-eslint/eslint-plugin": "4.9.0",
"@typescript-eslint/parser": "4.9.0",
"babel-eslint": "10.1.0",
"eslint": "7.21.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.8",
"jest": "26.6.3",
"jest-environment-jsdom-fourteen": "1.0.1",
"jest-watch-typeahead": "0.6.1",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"prettier-plugin-prisma": "0.4.0",
"pretty-quick": "3.1.0",
"preview-email": "3.0.3",
"react-test-renderer": "16.14.0",
"ts-jest": "26.4.4"
},
"private": true
}