-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
95 lines (95 loc) · 2.57 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
89
90
91
92
93
94
95
{
"name": "quirrel.dev",
"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",
"dev": "concurrently --raw \"npm run dev:deps up > /dev/null\" \"blitz dev\" \"quirrel -r localhost:6379 -p 4000 --passphrase=iamsecret\" \"quirrel\"",
"dev:blitz": "blitz dev",
"dev:deps": "docker-compose --env-file .env.local"
},
"cacheDirectories": [
"node_modules",
".blitz",
".next"
],
"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"
]
},
"prisma": {
"schema": "db/schema.prisma"
},
"dependencies": {
"@netlify/plugin-nextjs": "4.2.0",
"@prisma/client": "2.20.1",
"@sentry/browser": "6.4.0",
"@sentry/integrations": "6.3.6",
"@sentry/node": "6.3.5",
"@sentry/webpack-plugin": "1.15.1",
"@tailwindcss/typography": "0.4.0",
"@tailwindui/react": "0.1.1",
"@testing-library/jest-dom": "5.12.0",
"@testing-library/react": "11.2.7",
"@testing-library/react-hooks": "5.1.2",
"@zeit/next-source-maps": "0.0.4-canary.1",
"axios": "0.21.1",
"babel-runtime": "6.26.0",
"basic-auth": "2.0.1",
"blitz": "0.33.1",
"body-parser": "1.19.0",
"final-form": "4.20.2",
"php-serialize": "4.0.2",
"polished": "4.1.2",
"postmark": "2.7.4",
"prisma": "2.20.1",
"quirrel": "1.7.4",
"react": "0.0.0-experimental-7f28234f8",
"react-dom": "0.0.0-experimental-7f28234f8",
"react-error-boundary": "3.1.3",
"react-final-form": "6.5.3",
"react-syntax-highlighter": "15.4.3",
"react-typing-animation": "1.6.2",
"secure-e2ee": "0.4.0",
"secure-password": "4.0.0",
"sodium-native": "3.3.0",
"styled-components": "5.3.0",
"tailwindcss": "1",
"typescript": "4.2.4",
"victory": "35.7.0",
"zod": "3.5.1",
"@types/basic-auth": "1.1.3",
"@types/body-parser": "1.19.0",
"@types/react": "17.0.5",
"@types/react-syntax-highlighter": "13.5.0",
"@types/secure-password": "3.1.0",
"postcss-preset-env": "6.7.0"
},
"devDependencies": {
"@types/jest": "26.0.23",
"concurrently": "6.1.0",
"eslint": "7.26.0",
"husky": "6.0.0",
"jest": "26.6.3",
"lint-staged": "11.0.0",
"prettier": "2.3.0",
"pretty-quick": "3.1.0"
}
}