-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.89 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
{
"name": "keymapper",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.1.0",
"@mui/material": "^7.1.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/howler": "^2.2.11",
"@types/jest": "^27.5.2",
"@types/node": "^18.0.0",
"firebase": "^10.14.1",
"framer-motion": "^11.0.5",
"howler": "^2.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-router-dom": "^6.30.0",
"source-map-js": "^1.2.1",
"typescript": "^5.0.0",
"web-vitals": "^2.1.4",
"zustand": "^4.5.6"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@eslint/eslintrc": "^3.0.0",
"@eslint/js": "^9.26.0",
"@types/howler": "^2.2.11",
"@types/node": "^18.0.0",
"@types/react": "^18.3.21",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.4.1",
"browserslist": "^4.23.0",
"caniuse-lite": "^1.0.30001600",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"gh-pages": "^6.1.1",
"globals": "^16.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"ts-jest": "^29.1.2",
"typescript": "^5.0.0",
"typescript-eslint": "^8.32.0",
"vite": "^5.4.19",
"vite-plugin-environment": "^1.1.3"
},
"scripts": {
"dev": "node ./node_modules/vite/bin/vite.js",
"build": "node ./node_modules/vite/bin/vite.js build",
"build:ghp": "cross-env VITE_GHPAGES_BASE=/MappedKeyss/ vite build",
"postbuild": "cp dist/index.html dist/404.html",
"lint": "eslint .",
"preview": "node ./node_modules/vite/bin/vite.js preview",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "husky install",
"deploy": "gh-pages -d dist",
"deploy:ghp": "npm run build:ghp && npm run deploy"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"setupFilesAfterEnv": [
"<rootDir>/src/test/setup.ts"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/test/**",
"!src/**/*.d.ts"
]
}
}