-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "multicharts-decoder",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"test": "vitest",
"lint": "eslint . --ext .js,.jsx",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/multicharts-decoder.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nearform/multicharts-decoder/issues"
},
"homepage": "https://github.com/nearform/multicharts-decoder#readme",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^5.16.14",
"@mui/material": "^5.16.14",
"@mui/x-data-grid": "^7.24.0",
"exceljs": "^4.4.0",
"ini": "^5.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"prettier": "^2.8.3",
"vite": "^6.0.7",
"vitest": "^3.0.2"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
}
}