-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
131 lines (131 loc) · 3.74 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "Remap",
"version": "0.2.3",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.19",
"@mui/material": "^5.15.19",
"@mui/styles": "^5.15.19",
"@pdf-lib/fontkit": "^1.1.1",
"ajv": "^7.0.3",
"axios": "^0.21.1",
"date-fns": "^3.6.0",
"downloadjs": "^1.4.7",
"firebase": "^8.2.1",
"immer": "^8.0.0",
"intel-hex": "^0.1.2",
"notistack": "^2.0.3",
"pdf-lib": "^1.16.0",
"prop-types": "^15.7.2",
"qs": "^6.10.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.6",
"react-google-charts": "^4.0.1",
"react-helmet-async": "^2.0.5",
"react-image-gallery": "^1.3.0",
"react-redux": "^9.1.2",
"react-router": "^7.0.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"reinvented-color-wheel": "^0.2.10",
"sass": "^1.77.4",
"tss-react": "^3.3.1",
"typescript": "^5.4.5",
"web-vitals": "^1.1.0"
},
"scripts": {
"start": "vite",
"type-check": "tsc --noEmit",
"lint": "eslint src",
"build": "yarn type-check && yarn lint && vite build",
"test": "vitest",
"format": "prettier --write './src/**/*.{ts,tsx}'",
"gen-types": "json2ts src/services/storage/assets/keyboard-definition-schema.json --style.singleQuote > src/gen/types/KeyboardDefinition.ts;",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006 -s public",
"build-storybook": "NODE_OPTIONS=--openssl-legacy-provider build-storybook -s public"
},
"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": {
"@eslint/compat": "^1.0.3",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.4.0",
"@storybook/addon-actions": "^6.1.14",
"@storybook/addon-essentials": "^6.1.15",
"@storybook/addon-links": "^6.1.14",
"@storybook/node-logger": "^6.1.14",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/react": "^6.1.14",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/ajv": "^1.0.0",
"@types/axios": "^0.14.0",
"@types/downloadjs": "^1.4.2",
"@types/node": "^14.14.22",
"@types/prop-types": "^15.7.4",
"@types/qs": "^6.9.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-image-gallery": "^1.2.4",
"@types/sinon": "^10.0.2",
"@types/w3c-web-hid": "^1.0.1",
"@types/w3c-web-serial": "^1.0.2",
"@types/w3c-web-usb": "^1.0.5",
"@types/wicg-file-system-access": "^2020.9.7",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"babel-eslint": "^10.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.21.5",
"globals": "^15.3.0",
"happy-dom": "^14.12.0",
"husky": "^4.3.6",
"json-schema-to-typescript": "^10.1.2",
"lint-staged": "^10.5.3",
"prettier": "^3.2.5",
"sinon": "^11.1.2",
"vite": "^5.2.12",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "^1.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{html,css,scss,md,json,yaml}": [
"prettier --write",
"git add"
],
"*.{js,jsx}": [
"prettier --write",
"git add"
]
},
"packageManager": "[email protected]",
"type": "module"
}