-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.88 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.88 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
{
"name": "entel",
"version": "0.1.0",
"scripts": {
"predev": "docker-compose up -d",
"dev": "blitz dev",
"build": "blitz build",
"start": "blitz start",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "jest --silent",
"start:production": "blitz start --port $PORT",
"test:watch": "jest --watch"
},
"engines" : {
"npm" : ">=7.0.0",
"node" : ">=14 <15"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged",
"pre-push": "tsc && npm run lint && npm run test"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@chakra-ui/icons": "1.0.13",
"@chakra-ui/react": "1.6.7",
"@emotion/react": "11.4.1",
"@emotion/styled": "11.3.0",
"@prisma/client": "~2.30.3",
"@react-icons/all-files": "4.1.0",
"@types/preview-email": "2.0.1",
"blitz": "0.34.3",
"email-templates": "8.0.8",
"final-form": "4.20.2",
"framer-motion": "4.1.17",
"fs": "0.0.2",
"fs-extra": "9.1.0",
"hbs": "4.1.2",
"nodemailer": "6.6.1",
"prisma": "~2.19",
"react-dom": "0.0.0-experimental-6a589ad71",
"react-error-boundary": "3.1.3",
"react-final-form": "6.5.3",
"react-icons": "4.2.0",
"react-responsive": "8.2.0",
"typescript": "~4.2.4",
"zod": "1.11.17"
},
"devDependencies": {
"@types/email-templates": "7.1.0",
"@types/preview-email": "2.0.1",
"@types/react": "17.0.5",
"eslint": "7.32.0",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"prettier-plugin-prisma": "0.6.0",
"pretty-quick": "3.1.1",
"react": "18.0.0",
"typescript-plugin-css-modules": "3.2.0"
},
"private": true
}