-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.17 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
{
"name": "frontend",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx run-many --all --target serve --parallel 4",
"start:bit": "yarn --cwd components exec bit start --dev",
"build": "nx run-many --all --target build",
"publish": "nx run-many --all --target publish --configuration production",
"test": "nx run-many --all --target test --coverage --verbose --detectOpenHandles",
"lint": "nx run-many --all --target lint",
"format": "nx format",
"depcruise": "depcruise --config .dependency-cruiser.js ."
},
"private": true,
"dependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.7.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.5",
"@mui/material": "^5.2.7",
"@nrwl/next": "13.4.3",
"@prisma/client": "^3.7.0",
"@supabase/supabase-js": "^1.29.1",
"clsx": "^1.1.1",
"core-js": "^3.20.2",
"critters": "^0.0.16",
"lodash": "^4.17.21",
"markdown-to-jsx": "^7.1.5",
"next": "12.0.7",
"next-seo": "^4.28.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "0.13.9",
"swr": "^1.1.2",
"tslib": "^2.3.1"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.7.2",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@next/bundle-analyzer": "^12.0.7",
"@nrwl/cli": "13.4.3",
"@nrwl/cypress": "13.4.3",
"@nrwl/eslint-plugin-nx": "13.4.3",
"@nrwl/jest": "13.4.3",
"@nrwl/js": "13.4.3",
"@nrwl/linter": "13.4.3",
"@nrwl/node": "^13.4.3",
"@nrwl/nx-cloud": "^13.0.2",
"@nrwl/react": "13.4.3",
"@nrwl/tao": "13.4.3",
"@nrwl/web": "13.4.3",
"@nrwl/workspace": "13.4.3",
"@nx-tools/nx-docker": "^2.2.0",
"@nx-tools/nx-prisma": "^2.0.0-alpha.4",
"@swc/cli": "~0.1.55",
"@swc/core": "1.2.127",
"@swc/helpers": "~0.3.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/react-hooks": "7.0.2",
"@types/chai": "^4.3.0",
"@types/jest": "27.4.0",
"@types/node": "17.0.8",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11",
"@typescript-eslint/eslint-plugin": "~5.9.0",
"@typescript-eslint/parser": "~5.9.0",
"babel-jest": "27.4.6",
"chai": "^4.3.4",
"cypress": "^9.2.0",
"dependency-cruiser": "^11.2.1",
"dotenv": "^10.0.0",
"eslint": "8.6.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"jest": "27.4.7",
"nx": "^13.4.3",
"nx-stylelint": "^13.1.0",
"prettier": "^2.5.1",
"prisma": "^3.7.0",
"react-test-renderer": "17.0.2",
"stylelint": "^14.2.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"ts-jest": "27.1.2",
"typescript": "~4.5.4"
},
"packageManager": "yarn@3.1.1",
"jest": {
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -10
}
}
}
}