-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
{
"name": "kmailprint-front",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fluentui/react": "^8.11.0",
"@fluentui/react-theme-provider": "^0.18.5",
"@microsoft/office-js": "^1.1.54",
"@types/node": "^12.20.10",
"@types/office-js": "^1.0.177",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"axios": "^0.21.1",
"babel-polyfill": "^6.26.0",
"bowser": "^2.11.0",
"caniuse-lite": "^1.0.30001576",
"file-saver": "^2.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"start": "webpack serve --mode=development --open --hot --https",
"build": "webpack --mode=production",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.{ts,tsx}' --write"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 11"
]
},
"devDependencies": {
"@babel/preset-env": "^7.14.1",
"@types/file-saver": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.4",
"dotenv-webpack": "^7.0.2",
"eslint": "^7.24.0",
"html-webpack-plugin": "^5.3.1",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"ts-loader": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}