-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.58 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.58 KB
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
{
"name": "foodhut",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "nx serve ch5",
"build": "nx build food-hut",
"start": "nx serve food-hut --prod",
"lint": "nx lint food-hut",
"test": "jest --watch",
"ch5": "nx serve ch5",
"ch6": "nx serve ch6"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.4",
"@next/font": "13.1.2",
"@nrwl/eslint-plugin-nx": "15.6.3",
"@nrwl/next": "^15.6.3",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"axios": "^1.0.0",
"chart.js": "^4.3.0",
"cypress": "^12.3.0",
"eslint": "~8.15.0",
"eslint-config-next": "13.1.2",
"file-loader": "^6.2.0",
"next": "13.1.2",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"tslib": "^2.3.0",
"typescript": "4.9.4",
"ws": "8.12.1"
},
"devDependencies": {
"@babel/preset-react": "^7.14.5",
"@nrwl/cypress": "15.6.3",
"@nrwl/esbuild": "15.6.3",
"@nrwl/jest": "15.6.3",
"@nrwl/js": "15.6.3",
"@nrwl/linter": "15.6.3",
"@nrwl/node": "15.6.3",
"@nrwl/nx-cloud": "latest",
"@nrwl/react": "15.6.3",
"@nrwl/vite": "15.6.3",
"@swc/core": "^1.2.173",
"@swc/jest": "0.2.20",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "13.4.0",
"@types/chart.js": "^2.9.37",
"@types/jest": "28.1.1",
"@types/react-chartjs-2": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "~0.25.8",
"@vitest/ui": "^0.25.8",
"babel-jest": "28.1.1",
"esbuild": "^0.15.7",
"eslint-config-prettier": "8.1.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "28.1.1",
"jsdom": "~20.0.3",
"nx": "15.6.3",
"react-test-renderer": "18.2.0",
"sass": "1.55.0",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"vite": "^4.0.1",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^4.0.2",
"vitest": "^0.25.8"
},
"nx": {
"targets": {}
}
}