-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.25 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.25 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "cleanarea",
"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",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"pre-run:prod": "yarn --frozen-lockfile --prod=false && blitz prisma generate && blitz build && blitz prisma migrate deploy",
"pre-run:dev": "yarn install && blitz prisma generate && blitz prisma db push"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@ant-design/icons": "4.7.0",
"@babel/core": "7.16.0",
"@emotion/react": "11.5.0",
"@emotion/styled": "11.3.0",
"@material-ui/core": "^4.12.3",
"@mui/material": "5.0.4",
"@prisma/client": "3.5.0",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"antd": "4.17.3",
"autoprefixer": "10",
"await-to-js": "3.0.0",
"blitz": "0.43.0",
"final-form": "^4.20.4",
"less": "4.1.2",
"material-ui": "0.20.2",
"next-plugin-antd-less": "1.6.0",
"passport-bnet": "2.0.0",
"postcss": "8",
"query-string": "7.0.1",
"react": "18.0.0-alpha-5ca4b0433-20211020",
"react-dom": "18.0.0-alpha-5ca4b0433-20211020",
"react-final-form": "^6.5.7",
"tailwindcss": "2.1.2",
"zod": "3.11.6"
},
"devDependencies": {
"@types/passport-bnet": "2.0.2",
"@types/preview-email": "^2.0.1",
"@types/react": "17.0.37",
"babel-plugin-import": "1.13.3",
"eslint": "8.3.0",
"husky": "7.0.4",
"lint-staged": "^11.2.3",
"prettier": "2.5.0",
"prettier-plugin-prisma": "3.5.0",
"pretty-quick": "3.1.2",
"preview-email": "^3.0.5",
"prisma": "3.5.0",
"typescript": "4.5.2"
},
"private": true,
"resolutions": {
"react-test-renderer": "^17.0.1",
"babel-plugin-superjson-next": "^0.4.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"@babel/core": "^7.15.8"
}
}