-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.68 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
{
"name": "@karamem0/hitofude",
"private": true,
"type": "module",
"version": "0.0.0",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"test": "jest -i --reporters default",
"test:ci": "jest -i --ci --collect-coverage",
"eslint": "eslint src",
"eslint:fix": "eslint src --fix",
"stylelint": "stylelint 'src/**/*.{css,scss,jsx,tsx}'",
"stylelint:fix": "stylelint 'src/**/*.{css,scss,jsx,tsx}' --fix",
"formatjs:extract": "formatjs extract 'src/**/messages.ts' --out-file 'src/translations/en.json' --id-interpolation-pattern '[sha512:contenthash:base64:6]' --format simple",
"formatjs:compile": "npm run formatjs:compile-en && npm run formatjs:compile-ja",
"formatjs:compile-en": "formatjs compile 'src/translations/en.json' --out-file 'src/translations/compiled/en.json' --ast --format simple",
"formatjs:compile-ja": "formatjs compile 'src/translations/ja.json' --out-file 'src/translations/compiled/ja.json' --ast --format simple"
},
"dependencies": {
"@automapper/core": "^8.8.1",
"@automapper/pojos": "^8.8.1",
"@azure/msal-browser": "^3.27.0",
"@azure/msal-react": "^2.2.0",
"@fluentui/react-components": "^9.56.0",
"@fluentui/react-icons-mdl2": "^1.3.80",
"@fluentui/react-icons-mdl2-branded": "^1.2.82",
"@microsoft/applicationinsights-react-js": "^17.3.4",
"@microsoft/applicationinsights-web": "^3.3.4",
"@microsoft/microsoft-graph-client": "^3.0.7",
"bytes": "^3.1.2",
"mermaid": "^11.4.0",
"mime": "^4.0.4",
"monaco-editor": "^0.52.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"react-error-boundary": "^4.1.2",
"react-hook-form": "^7.53.2",
"react-intl": "^6.8.7",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.28.0",
"react-syntax-highlighter": "^15.6.1",
"react-use": "^17.5.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"ress": "^5.0.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@emotion/babel-plugin": "^11.12.0",
"@emotion/babel-preset-css-prop": "^11.12.0",
"@emotion/jest": "^11.13.0",
"@emotion/react": "^11.13.3",
"@eslint/compat": "1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@formatjs/cli": "^6.3.8",
"@microsoft/microsoft-graph-types": "^2.40.0",
"@stylistic/eslint-plugin": "^2.10.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/bytes": "^3.1.4",
"@types/jest": "^29.5.14",
"@types/mime": "^4.0.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vitejs/plugin-react": "^4.3.3",
"babel-jest": "^29.7.0",
"babel-plugin-formatjs": "^10.5.24",
"eslint": "^8.57.1",
"eslint-plugin-hooks": "^0.4.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-sonarjs": "^2.0.4",
"eslint-plugin-testing-library": "^6.4.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"postcss": "^8.4.48",
"postcss-styled-syntax": "^0.7.0",
"sass": "^1.80.6",
"stylelint": "^16.10.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard-scss": "^13.1.0",
"typescript": "^5.6.3",
"vite": "^5.4.11"
},
"volta": {
"node": "20.18.0"
}
}