forked from abuuzayr/techjobs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.67 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
{
"name": "techjobs.sg",
"version": "1.0.0",
"scripts": {
"dev": "blitz dev",
"build": "NODE_ENV=production blitz prisma migrate deploy --preview-feature && blitz build",
"start": "blitz start --port $PORT",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"prisma": "~2.20",
"@prisma/client": "~2.20",
"blitz": "0.34.3",
"@panelbear/panelbear-js": "1.2.0",
"react": "0.0.0-experimental-6a589ad71",
"react-dom": "0.0.0-experimental-6a589ad71",
"react-error-boundary": "3.1.3",
"typescript": "~4.2",
"zod": "1.11.17",
"final-form": "4.20.2",
"react-final-form": "6.5.3",
"react-bulma-components": "3.4.0",
"react-icons": "4.1.0",
"react-modal": "3.12.1",
"react-remove-scroll": "2.4.1",
"react-select": "4.0.2",
"react-social-sharing": "3.3.0",
"light-toast": "0.3.3",
"stripe": "8.148.0",
"@stripe/react-stripe-js": "1.4.0",
"@stripe/stripe-js": "1.14.0"
},
"devDependencies": {
"@types/react": "17.0.5",
"@types/preview-email": "2.0.0",
"eslint": "7.26.0",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"preview-email": "3.0.4",
"prettier-plugin-prisma": "0.7.0"
},
"private": true,
"engines": {
"node": ">= 14.x",
"yarn": "1.22.x"
}
}