-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
127 lines (127 loc) · 3.58 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "kalle",
"version": "1.0.0",
"scripts": {
"dev": "concurrently -r \"blitz dev\" \"docker-compose up\" quirrel",
"studio": "blitz db studio",
"build": "blitz build",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "jest",
"test:watch": "jest --watch",
"cypress:open": "cypress open --env host=localhost,port=3000",
"cypress:collect-coverage": "mv .nyc_output/out.json out.json.old && cat out.json.old | cypress/rewrite-coverage-sources.js > .nyc_output/out.json && npx nyc report --reporter=lcov --exclude .blitz",
"db:seed": "ts-node db/seed.ts"
},
"engines": {
"node": "14.x"
},
"browserslist": [
"defaults"
],
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"husky": {
"hooks": {
"pre-commit": "tsc && lint-staged && pretty-quick --staged",
"pre-push": "npm run lint && npm run test"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.32",
"@fortawesome/free-solid-svg-icons": "5.15.1",
"@fortawesome/react-fontawesome": "0.1.12",
"@prisma/client": "2.14.0",
"@quirrel/next": "0.10.0",
"@testing-library/react": "11.2.5",
"@testing-library/react-hooks": "5.0.3",
"bcrypt": "5.0.1",
"blitz": "0.30.4",
"bootstrap": "4.5.3",
"cypress-social-logins": "1.9.3",
"date-fns": "2.16.1",
"date-fns-tz": "1.1.1",
"email-templates": "8.0.0",
"final-form": "4.20.1",
"googleapis": "66.0.0",
"hbs": "4.1.1",
"ics": "2.26.1",
"lodash": "4.17.20",
"node-fetch": "2.6.1",
"node-ical": "0.12.3",
"nodemailer": "6.4.16",
"password-sheriff": "1.1.0",
"pug": "3.0.0",
"quirrel": "1.0.3",
"react": "0.0.0-experimental-7f28234f8",
"react-bootstrap": "1.4.0",
"react-bootstrap-icons": "1.3.0",
"react-copy-to-clipboard": "5.0.2",
"react-datepicker": "3.3.0",
"react-dom": "0.0.0-experimental-7f28234f8",
"react-error-boundary": "2.3.2",
"react-final-form": "6.5.2",
"react-loading-skeleton": "2.1.1",
"react-nice-dates": "3.0.7",
"react-step-progress": "1.0.3",
"react-tooltip": "4.2.13",
"request": "2.88.2",
"secure-e2ee": "0.4.0",
"secure-password": "4.0.0",
"unique-names-generator": "4.3.1",
"urllib": "2.36.1",
"uuid": "8.3.2",
"zod": "1.11.10"
},
"devDependencies": {
"@babel/plugin-syntax-typescript": "7.12.1",
"@cypress/code-coverage": "3.9.2",
"@prisma/cli": "2.14.0",
"@types/email-templates": "7.1.0",
"@types/jest": "26.0.15",
"@types/lodash": "4.14.165",
"@types/node-fetch": "2.5.7",
"@types/react": "16.9.56",
"@types/secure-password": "3.1.0",
"@typescript-eslint/eslint-plugin": "4.15.2",
"all-contributors-cli": "6.20.0",
"autoprefixer": "10.0.2",
"babel-plugin-istanbul": "6.0.0",
"concurrently": "5.3.0",
"cypress": "6.1.0",
"eslint": "7.13.0",
"eslint-config-prettier": "7.0.0",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.3.0",
"eslint-plugin-react": "7.22.0",
"execa": "5.0.0",
"fast-glob": "3.2.5",
"husky": "4.3.0",
"jest": "26.6.3",
"lint-staged": "10.5.1",
"postcss": "8.1.8",
"prettier": "2.1.2",
"pretty-quick": "3.1.0",
"sass": "1.32.4",
"testcontainers": "6.3.0",
"ts-jest": "26.4.4",
"ts-node": "9.1.1",
"typescript": "4.0.5"
},
"private": true,
"nyc": {
"reporter": [
"json"
]
}
}