-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 4.12 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "office-addin-react",
"version": "3.0.0",
"description": "Integratie tussen het Mozard zaaksysteem en Microsoft Office",
"keywords": [
"mozard",
"office",
"integratie",
"react",
"reactjs",
"react.js",
"javascript",
"js"
],
"homepage": "https://gitlab.com/MozardBV/office-addin-react#readme",
"bugs": {
"url": "https://intranet.mozard.nl/mozard/!suite06.scherm1089?mWfr=604&mDv=990842"
},
"license": "GPL-3.0-or-later",
"author": "Mozard BV",
"contributors": [
"Patrick Godschalk <p.godschalk@ienpm.nl>"
],
"repository": {
"type": "git",
"url": "https://gitlab.com/MozardBV/office-addin-react.git"
},
"config": {
"app-to-debug": "word",
"app-type-to-debug": "desktop",
"dev-server-port": 3000
},
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"build-dev": "webpack --mode development && echo . && echo . && echo . && echo Gebruik 'build:dev' in plaats van 'build-dev'.",
"dev-server": "webpack serve --mode development",
"lint": "office-addin-lint check",
"lint:fix": "office-addin-lint fix",
"prettier": "office-addin-lint prettier",
"start": "office-addin-debugging start manifest.xml",
"start:desktop": "office-addin-debugging start manifest.xml desktop",
"start:web": "office-addin-debugging start manifest.xml web",
"stop": "office-addin-debugging stop manifest.xml",
"validate": "office-addin-manifest validate manifest.xml",
"watch": "webpack --mode development --watch"
},
"dependencies": {
"@fluentui/react": "^8.23.5",
"@sentry/react": "^6.9.0",
"@sentry/tracing": "^6.9.0",
"axios": "^0.21.1",
"core-js": "^3.15.2",
"es6-promise": "^4.2.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"styled-components": "^5.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@hot-loader/react-dom": "^17.0.1",
"@types/es6-collections": "^0.5.33",
"@types/node": "^16.3.3",
"@types/office-js": "^1.0.190",
"@types/office-runtime": "^1.0.20",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^3.11.5",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.1.0",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-office-addins": "0.3.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"find-process": "^1.4.4",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"mini-css-extract-plugin": "^2.1.0",
"office-addin-cli": "^1.2.1",
"office-addin-debugging": "^4.2.1",
"office-addin-dev-certs": "^1.6.1",
"office-addin-lint": "^1.3.1",
"office-addin-manifest": "^1.6.1",
"office-addin-prettier-config": "^1.1.0",
"path": "^0.12.7",
"postcss-loader": "6.1.1",
"prettier": "^2.3.2",
"react-devtools": "^4.14.0",
"react-hot-loader": "^4.13.0",
"react-is": "^17.0.2",
"source-map-loader": "^3.0.0",
"standard": "^16.0.3",
"style-loader": "^3.1.0",
"stylelint": "^13.13.1",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.4.0",
"stylelint-config-standard": "^22.0.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"prettier": "office-addin-prettier-config"
}