-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.53 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.53 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
{
"name": "MacMock",
"version": "0.5.0",
"description": "Mac OS Simulator",
"main": "index.tsx",
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@types/node": "^18.19.0",
"draft-js": "^0.11.7",
"framer-motion": "^11.2.6",
"fuse.js": "^7.0.0",
"i18next": "^23.11.2",
"i18next-browser-languagedetector": "^7.2.1",
"immer": "^10.0.4",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-big-calendar": "^1.13.0",
"react-clock": "^5.0.0",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.6",
"react-full-screen": "^1.1.1",
"react-i18next": "^14.1.1",
"react-resizable": "^3.0.5",
"react-router-dom": "^6.23.1",
"react-scripts": "5.0.1",
"typescript": "^5.4.5",
"web-vitals": "^2.1.4",
"zustand": "^4.5.2"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "TZ=UTC jest --config jest.config.js",
"test:cov": "TZ=UTC jest --config jest.config.js --coverage ",
"test:craco": "TZ=UTC craco test --silent --watchAll=false",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check .",
"prettier:staged": "prettier --write .",
"lint:staged": "eslint --fix --ext .ts,.tsx $(git diff --name-only --cached --relative --diff-filter=ACMRTUXB | grep '\\.tsx\\?$')",
"lint:fix": "eslint --fix --ext .ts,.tsx ./src",
"eject": "craco eject",
"lint": "eslint --fix --ext .ts,.tsx ./src",
"prepare": "husky",
"cy:open": "cypress open",
"run-staged-tests": "./scripts/run-staged-tests.sh",
"run-pushed-files-tests": "./scripts/run-staged-tests.sh --pushed"
},
"resolutions": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.3"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"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.24.8",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@craco/craco": "^7.1.0",
"@craco/types": "^7.1.0",
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^13.5.0",
"@types/draft-js": "^0.11.18",
"@types/jest": "^29.5.12",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-big-calendar": "^1.8.9",
"@types/react-resizable": "^3.0.8",
"@types/react-test-renderer": "^18.3.0",
"babel-jest": "^29.7.0",
"cypress": "^13.8.1",
"eslint": "^8.0.1",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"prettier": "3.2.5",
"react-test-renderer": "^18.3.0",
"ts-jest": "^29.1.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.3"
},
"repository": "git@github.com:AmitRaikwar-in/MacMock.git",
"author": "Amit Raikwar",
"license": "MIT"
}