-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.29 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
{
"name": "amitraikwar-portfolio",
"version": "0.3.0",
"description": "Amit Raikwar Portfolio website",
"main": "index.tsx",
"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"
},
"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",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.5.12",
"@types/node": "^16.18.91",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"framer-motion": "^11.1.9",
"fuse.js": "^7.0.0",
"i18next": "^23.11.2",
"i18next-browser-languagedetector": "^7.2.1",
"immer": "^10.0.4",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.1",
"react-router-dom": "^6.23.1",
"react-scripts": "5.0.1",
"react-social-icons": "^6.16.0",
"react-type-animation": "^3.2.0",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4",
"zustand": "^4.5.2"
},
"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.5",
"@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/user-event": "^13.5.0",
"@types/jest": "^29.5.12",
"@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",
"eslint-plugin-react-hooks": "^4.6.2",
"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"
},
"repository": "git@github.com:onemanfighter/amitraikwar.git",
"author": "Amit Raikwar",
"license": "MIT"
}