-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
87 lines (87 loc) · 2.55 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
{
"name": "cuarentrivia",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"affected:build": "nx affected:build",
"affected:build:ci": "nx affected:build --base=origin/main",
"affected:e2e": "nx affected:e2e",
"affected:e2e:ci": "nx affected:e2e --base=origin/main",
"affected:test": "nx affected:test",
"affected:test:ci": "nx affected:test --base=origin/main",
"affected:lint": "nx affected:lint",
"affected:lint:ci": "nx affected:lint --base=origin/main",
"precommit": "nx format:write --all",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.0",
"@mui/styles": "^5.9.0",
"@testing-library/react": "^13.3.0",
"@use-it/interval": "^1.0.0",
"core-js": "^3.6.5",
"dotenv": "^14.3.0",
"firebase": "^9.6.4",
"firebase-admin": "^10.0.2",
"firebase-functions": "^3.16.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-firebase-hooks": "^5.0.3",
"react-firebaseui": "^6.0.0",
"react-google-charts": "^4.0.0",
"react-is": "18.0.0",
"react-router-dom": "6.3.0",
"regenerator-runtime": "0.13.7",
"tslib": "^2.5.0",
"unique-names-generator": "^4.6.0",
"workbox-window": "^6.4.2"
},
"devDependencies": {
"@nrwl/cli": "14.4.2",
"@nrwl/cypress": "14.4.2",
"@nrwl/eslint-plugin-nx": "14.4.2",
"@nrwl/jest": "14.4.2",
"@nrwl/linter": "14.4.2",
"@nrwl/node": "14.4.2",
"@nrwl/react": "14.4.2",
"@nrwl/web": "14.4.2",
"@nrwl/workspace": "14.4.2",
"@types/jest": "27.4.1",
"@types/node": "18.0.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "5.30.6",
"@typescript-eslint/parser": "5.30.6",
"cypress": "^9.1.0",
"eslint": "8.50.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.0",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"firebase-tools": "^12.6.1",
"husky": "^7.0.4",
"jest": "27.5.1",
"lint-staged": "^13.0.3",
"nx": "14.4.2",
"prettier": "2.7.1",
"react-test-renderer": "18.2.0",
"ts-jest": "27.1.4",
"typescript": "4.7.4",
"workbox-cli": "^6.4.2"
},
"lint-staged": {
"*": [
"nx affected:lint --fix --files",
"nx format:write --files"
]
}
}