This repository has been archived by the owner on Mar 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.86 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": "lampsz-app",
"version": "1.0.0",
"private": true,
"description": "Source code for Lampsz platform",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "jest",
"dev": "webpack --mode development --watch",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcsil/Lampsz-App.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dcsil/Lampsz-App/issues"
},
"homepage": "https://github.com/dcsil/Lampsz-App#readme",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"jest": {
"transform": {
"^.+\\.(js|ts|tsx)$": "ts-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/client/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/client/__mocks__/styleMock.js"
},
"collectCoverage": true,
"testEnvironment": "jsdom",
"collectCoverageFrom": [
"./client/src/components/**",
"./client/src/utils/**",
"./client/src/App.tsx"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"babel-loader": "^9.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.27.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.3.1",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.12",
"@mui/x-data-grid": "^5.17.14",
"@mui/x-date-pickers": "^5.0.9",
"@types/jest": "^27.5.2",
"@types/js-cookie": "^3.0.2",
"@types/node": "^16.18.3",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"axios": "^1.1.3",
"dayjs": "^1.11.6",
"js-cookie": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-button": "^0.7.2",
"react-router-dom": "^6.4.3",
"web-vitals": "^2.1.4"
}
}