-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.64 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.64 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "react_app",
"version": "0.1.0",
"private": true,
"scripts": {
"start-dev": "GENERATE_SOURCEMAP=false && react-scripts start",
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint './src/**/*.{ts,tsx}' --fix",
"postformat": "prettier . --write",
"typecheck": "tsc-files --noEmit",
"format": "eslint -c .eslintrc.js --ignore-path .eslintignore --fix",
"fix": "yarn lint:ts --fix",
"lint-staged": "lint-staged",
"test": "jest",
"cy:open": "cypress open",
"ts-coverage": "typescript-coverage-report"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.18",
"@mui/material": "^5.15.18",
"@react-pdf/renderer": "^3.3.8",
"@react-three/drei": "^9.105.6",
"@react-three/fiber": "^8.16.6",
"@tanstack/react-query": "^5.36.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/node": "^12.0.0",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.164.0",
"antd": "^5.17.2",
"axios": "^1.7.1",
"babel-plugin-module-resolver": "^5.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-react-compiler": "^0.0.0-experimental-c8b3f72-20240517",
"html2canvas": "^1.4.1",
"immer": "^10.1.1",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jspdf": "^2.5.1",
"leva": "^0.9.35",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2",
"ol": "^9.2.2",
"radium": "^0.26.2",
"react": "^18.3.1",
"react-animations": "^1.0.0",
"react-dom": "^18.2.0",
"react-pdf": "^7.7.1",
"react-query": "^3.39.3",
"react-router": "^6.22.1",
"react-router-dom": "^6.23.1",
"react-scripts": "^5.0.1",
"semantic-ui-react": "^2.1.5",
"styled-components": "^6.1.11",
"three": "^0.164.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"valtio": "^1.13.2",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-typescript": "^7.24.1",
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/user-event": "^14.5.2",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"cross-fetch": "^4.0.0",
"cypress": "^13.10.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react": "^1.1.7",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"lint-staged": "^11.0.0",
"prettier": "^3.2.5",
"react-test-renderer": "^18.3.1",
"ts-jest": "^29.1.3",
"typescript-coverage-report": "^1.1.0"
},
"lint-staged": {
"*.{js,jsx}": [
"yarn stylelint",
"yarn format",
"git-add"
],
"*.{ts,tsx}": [
"yarn stylelint",
"yarn format",
"git-add"
]
},
"pre-commit": [
"lint-staged"
],
"resolutions": {
"styled-components": "^5"
},
"main": "index.js",
"repository": "git@github.com:sudipstha08/react.git",
"author": "sudipstha08 <sudipstha08@gmail.com>",
"license": "MIT"
}