-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
{
"name": "hemolog",
"version": "2.8.0",
"scripts": {
"build": "next build",
"dev": "next dev",
"firebase": "firebase emulators:start",
"lint": "eslint --cache \"**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --cache --fix \"**/*.{js,jsx,ts,tsx}\"",
"start": "next start",
"prepare": "husky install",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"dependencies": {
"@geist-ui/react": "2.2.5",
"@geist-ui/react-icons": "^1.0.1",
"@splitbee/web": "^0.3.0",
"date-fns": "^2.16.1",
"firebase": "^8.6.2",
"firebase-admin": "^9.8.0",
"formik": "^2.2.5",
"isomorphic-unfetch": "^3.1.0",
"js-cookie": "^2.2.1",
"nanoid": "^3.1.31",
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-firebaseui": "^4.1.0",
"react-qr-code": "^2.0.14",
"react-vis": "^1.11.7",
"styled-components": "^6.1.11",
"swr": "^1.2.1",
"underscore": "^1.11.0"
},
"devDependencies": {
"@testing-library/cypress": "^8.0.3",
"@types/js-cookie": "^2.2.6",
"@types/node": "^20.14.1",
"@types/react": "^17.0.33",
"@types/react-vis": "^1.11.6",
"@types/styled-components": "^5.1.4",
"@types/underscore": "^1.11.1",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-plugin-styled-components": "^1.12.0",
"cypress": "^10.0.2",
"eslint": "<8.0.0",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"firebase-tools": "^9.11.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.5",
"prettier": "^2.5.1",
"typescript": "^4.3.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "bun lint:fix"
},
"trustedDependencies": [
"core-js",
"es5-ext",
"protobufjs"
]
}