-
Notifications
You must be signed in to change notification settings - Fork 359
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.41 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.41 KB
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
{
"name": "react-contoso",
"version": "1.3.0",
"homepage": ".",
"private": true,
"dependencies": {
"@fluentui/fluent2-theme": "^8.107.65",
"@fluentui/merge-styles": "^8.5.15",
"@fluentui/react": "^8.115.6",
"@fluentui/react-components": "^9.54.1",
"@fluentui/react-hooks": "^8.6.36",
"@fluentui/react-theme-provider": "^0.18.7",
"@microsoft/mgt-element": "*",
"@microsoft/mgt-msal2-provider": "*",
"@microsoft/mgt-react": "*",
"@types/node": "^16.18.83",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"eslint-config-react-app": "^7.0.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.15.0",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^5.1.4",
"vite-tsconfig-paths": "^4.3.1"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview"
},
"eslintConfig": {
"extends": [
"react-app"
],
"parserOptions": {
"warnOnUnsupportedTypeScriptVersion": false
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"ie 10"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}