This repository has been archived by the owner on Jan 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.48 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
{
"name": "paper-plane",
"version": "0.1.1",
"private": true,
"author": {
"name": "Matej Kňazík",
"email": "[email protected]"
},
"engines": {
"node": "16"
},
"main": "firebaseFunctions.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"serve": "yarn run build && firebase emulators:start --only functions,hosting",
"shell": "yarn run build && firebase functions:shell",
"types": "tsc",
"test": "jest",
"lint": "next lint --max-warnings=0",
"deploy": "firebase deploy --only functions,hosting",
"logs": "firebase functions:log"
},
"pre-commit": [
"build",
"types",
"lint",
"test"
],
"resolutions": {
"protobufjs": "^6.11.3"
},
"dependencies": {
"@faker-js/faker": "^6.1.2",
"@hookform/resolvers": "^2.8.8",
"@kiwicom/orbit-components": "^2.10.0",
"@kiwicom/orbit-design-tokens": "^1.0.6",
"@react-query-firebase/firestore": "^0.4.2",
"axios": "^0.26.1",
"chance": "^1.1.8",
"cors": "^2.8.5",
"firebase": "^9.6.8",
"firebase-admin": "^10.0.2",
"firebase-functions": "^3.20.1",
"json-schema-faker": "^0.5.0-rcv.42",
"lodash": "^4.17.21",
"next": "12.1.5",
"normalize.css": "^8.0.1",
"path-to-regexp": "^6.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-firebaseui": "^6.0.0",
"react-hook-form": "^7.27.1",
"react-json-editor-ajrm": "^2.5.13",
"react-json-view-compare": "^2.0.1",
"react-query": "^3.34.16",
"styled-components": "^5.3.3",
"z-schema": "^5.0.2",
"zod": "^3.13.4"
},
"devDependencies": {
"@hookform/devtools": "^4.1.0",
"@kiwicom/eslint-config": "^12.0.1",
"@types/chance": "^1.1.3",
"@types/cors": "^2.8.12",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.180",
"@types/node": "17.0.15",
"@types/react": "17.0.39",
"@types/react-json-editor-ajrm": "^2.5.3",
"@types/styled-components": "^5.1.22",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "8.8.0",
"eslint-config-next": "12.1.6",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-testing-library": "^5.0.5",
"firebase-tools": "^10.7.2",
"jest": "^27.5.1",
"openapi-types": "^10.0.0",
"pre-commit": "^1.2.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "4.5.5"
}
}