-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 2.49 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
{
"name": "mensaje",
"version": "1.0.0",
"scripts": {
"dev": "blitz dev",
"build": "NODE_ENV=production blitz prisma migrate deploy --preview-feature && quirrel ci && blitz build",
"start": "blitz start",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"analyze": "cross-env ANALYZE=true blitz build",
"cy:open": "cypress open",
"cy:run": "cypress run --browser chrome",
"test": "prisma generate && yarn test:jest && yarn test:e2e",
"test:jest": "jest",
"test:server": "cross-env NODE_ENV=test blitz prisma migrate deploy --preview-feature && blitz build && cross-env NODE_ENV=test blitz start -p 3099",
"test:e2e": "cross-env NODE_ENV=test start-server-and-test test:server http://localhost:3099 cy:run",
"quirrel": "quirrel"
},
"browserslist": [
"defaults"
],
"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"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@blitz-guard/core": "0.3.0",
"@prisma/client": "2.17.0",
"@quirrel/next": "0.10.0",
"@slack/web-api": "5.14.0",
"blitz": "0.31",
"lodash": "4.17.20",
"markdown-to-jsx": "7.1.1",
"passport-slack": "0.0.7",
"prisma": "2.17.0",
"react": "0.0.0-experimental-4ead6b530",
"react-dom": "0.0.0-experimental-4ead6b530",
"react-error-boundary": "2.3.2",
"react-hook-form": "6.14.0",
"slackify-markdown": "4.0.0",
"tailwindcss": "2",
"typescript": "4.1.3",
"zod": "1.11.11"
},
"devDependencies": {
"@types/faker": "5.1.5",
"@types/lodash": "4.14.168",
"@types/react": "16.14.2",
"@typescript-eslint/eslint-plugin": "4.11.1",
"@typescript-eslint/parser": "4.11.1",
"autoprefixer": "10",
"babel-eslint": "10.1.0",
"env-cmd": "10.1.0",
"eslint": "7.16.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.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"faker": "5.1.0",
"husky": "4.3.6",
"lint-staged": "10.5.3",
"nanoid": "3.1.20",
"pg": "8.5.1",
"postcss": "8",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"quirrel": "1.0.1"
},
"private": true
}