-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.07 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
{
"name": "@mirite/csv-magic",
"version": "1.10.0",
"author": {
"name": "Jesse Conner",
"email": "[email protected]"
},
"description": "A CSV editor that provides common manipulation tasks such as sorting, filtering and renaming.",
"repository": {
"type": "git",
"url": "git+https://github.com/mirite/csv-magic.git"
},
"private": true,
"type": "module",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@json2csv/plainjs": "^7.0.6",
"@mirite/csv-json-parser": "^0.1.3",
"bootstrap": "^5.3.3",
"csvtojson": "^2.0.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.7.2",
"zustand": "^5.0.2"
},
"scripts": {
"build": "webpack --mode=production",
"dev": "npx webpack-dev-server --config webpack.dev.config.js --mode=development",
"test": "jest",
"lint": "eslint --fix ; stylelint **/*.*css --fix --ignore-path .gitignore",
"format": "prettier . --write"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@mirite/eslint-config-mirite": "^0.2.0",
"@playwright/test": "^1.49.1",
"@types/jest": "^29.5.14",
"@types/json2csv": "^5.0.7",
"@types/node": "^22.10.4",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"css-loader": "^7.1.2",
"eslint": "^9.17.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.0",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"stylelint": "^16.12.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-prettier": "^5.0.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"license": "GPL-3.0-or-later",
"packageManager": "[email protected]"
}