-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.49 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
{
"name": "excel-csv-import",
"version": "0.0.0",
"repository": "https://github.com/Emurasoft/excel-csv-import.git",
"license": "MIT",
"author": "Makoto",
"scripts": {
"build": "webpack --config webpack/prod.js",
"devServer": "webpack serve --config webpack/dev.js",
"lint": "eslint .",
"test": "jest",
"validateManifest": "validate-office-addin manifests/dev.manifest.xml && validate-office-addin manifests/prod.manifest.xml"
},
"dependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.25.4",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@fluentui/react-components": "^9.54.14",
"@fluentui/react-icons": "^2.0.258",
"@fluentui/react-theme": "^9.1.19",
"@griffel/jest-serializer": "^1.1.29",
"@jest/globals": "^29.7.0",
"@microsoft/load-themed-styles": "^2.0.141",
"@microsoft/office-js": "^1.1.93",
"@reduxjs/toolkit": "^2.2.7",
"@stylistic/eslint-plugin": "^2.8.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/file-saver": "^2.0.7",
"@types/office-js": "^1.0.420",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@typescript-eslint/typescript-estree": "^8.4.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.38.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"eslint": "^9.10.0",
"eslint-plugin-react": "^7.35.2",
"file-saver": "^2.0.5",
"globals": "^15.9.0",
"html-webpack-plugin": "^5.6.0",
"ignore-styles": "^5.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"jsdom-global": "^3.0.2",
"node-fetch": "^3.3.2",
"office-addin-validator": "^1.0.5",
"papaparse": "^5.4.1",
"query-string": "^9.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.2",
"source-map": "^0.7.4",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1"
}
}