-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.96 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
{
"name": "satf-frontend",
"version": "0.8.0",
"author": "Casper Fibaek @ NIRAS",
"license": "Unlicenced for now",
"private": true,
"browserslist": [
"IE 11"
],
"scripts": {
"build": "custom-functions-metadata generate ./src/custom_functions.ts ./src/custom_functions_meta.json && webpack --mode production",
"build:dev": "webpack --mode development",
"build:watch": "webpack --mode development --watch",
"dev-server": "webpack serve --mode production",
"debug:desktop": "office-addin-debugging start ./dist/satf_local.0.8.0.xml desktop",
"debug:web": "office-addin-debugging start ./dist/satf_local.0.8.0.xml web",
"debug:stop": "office-addin-debugging stop ./dist/satf_local.0.8.0.xml",
"validate:prod": "office-addin-manifest validate ./dist/satf_production.0.8.0.xml",
"validate:dev": "office-addin-manifest validate ./dist/satf_development.0.8.0.xml",
"validate:local": "office-addin-manifest validate ./dist/satf_local.0.8.0.xml",
"metadata": "custom-functions-metadata generate ./src/custom_functions.ts ./src/components/custom_functions_meta.json"
},
"config": {
"app-to-debug": "excel",
"app-type-to-debug": "desktop",
"dev-server-port": 3000
},
"dependencies": {
"@fluentui/react": "^8.17.0",
"core-js": "^3.13.1",
"fuse.js-ie11": "^6.0.0",
"haversine": "^1.1.1",
"leaflet": "^1.7.1",
"leaflet.locatecontrol": "^0.73.0",
"npm_update": "npm:npm-check-updates@^11.6.0",
"react": "^17.0.2",
"react-app-polyfill": "^2.0.0",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.14.4",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@types/custom-functions-runtime": "^1.6.0",
"@types/leaflet": "^1.7.1",
"@types/office-js": "^1.0.181",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.0.0",
"custom-functions-metadata": "^1.0.54",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.3.1",
"office-addin-cli": "^1.1.3",
"office-addin-debugging": "^4.1.9",
"office-addin-dev-certs": "^1.5.21",
"office-addin-manifest": "^1.5.25",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"xml-webpack-plugin": "^1.2.0"
}
}