-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
109 lines (109 loc) · 4 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
{
"name": "jabref-office-addin",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https//github.com/JabRef/JabRef-Word-Addin.git"
},
"license": "MIT",
"config": {
"app_to_debug": "word",
"app_type_to_debug": "desktop",
"dev_server_port": 3000
},
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"dev-server": "webpack serve --mode development",
"lint": "yarn lint:ts && yarn lint:prettier && yarn lint:graphql",
"lint:ts": "office-addin-lint check --files \"src/**/*.{ts,tsx}\"",
"lint:fix": "office-addin-lint fix --files \"src/**/*.{ts,tsx}\"",
"lint:prettier": "prettier --check --ignore-path .gitignore .",
"lint:graphql": "eslint --ext .graphql --ignore-path .gitignore .",
"start": "office-addin-debugging start manifest.xml",
"start:desktop": "office-addin-debugging start manifest.xml desktop",
"start:web": "dotenv -- cross-var office-addin-debugging start manifest.xml web --document=%DOCUMENT_URL%",
"stop": "office-addin-debugging stop manifest.xml",
"validate": "office-addin-manifest validate manifest.xml",
"watch": "webpack --mode development --watch",
"generate": "graphql-codegen",
"postinstall": "yarn generate && crlf --set=LF node_modules/.bin/office-addin-*",
"clear:certs": "security find-certificate -c \"Developer CA for Microsoft Office Add-ins\" -a -Z | sudo awk '/SHA-1/{system(\"security delete-certificate -Z \"$NF)}'"
},
"dependencies": {
"@apollo/client": "^3.7.13",
"@fluentui/react": "^8.108.1",
"citeproc": "^2.4.63",
"core-js": "^3.30.1",
"cross-var": "^1.1.0",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.2.1",
"es6-promise": "^4.2.8",
"formik": "^2.2.9",
"graphql": "^16.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"regenerator-runtime": "^0.13.9"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-typescript": "^7.21.5",
"@graphql-codegen/cli": "3.3.1",
"@graphql-codegen/typescript": "3.0.4",
"@graphql-codegen/typescript-operations": "3.0.4",
"@graphql-codegen/typescript-react-apollo": "3.3.3",
"@graphql-eslint/eslint-plugin": "^3.18.0",
"@types/find-process": "1.2.0",
"@types/office-js": "^1.0.322",
"@types/office-runtime": "^1.0.30",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-hot-loader": "^4.1.0",
"@types/react-router-dom": "^5.3.3",
"@types/webpack": "^5.28.1",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"crlf": "^1.1.1",
"css-loader": "^6.7.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-office-addins": "^2.1.5",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^1.1.5",
"file-loader": "^6.2.0",
"find-process": "^1.4.7",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.1",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.7.5",
"office-addin-cli": "^1.5.3",
"office-addin-debugging": "^5.0.5",
"office-addin-dev-certs": "^1.11.3",
"office-addin-lint": "^2.0.1",
"office-addin-manifest": "^1.10.3",
"office-addin-prettier-config": "^1.2.0",
"postcss-loader": "^7.3.0",
"prettier": "2.8.8",
"react-hot-loader": "^4.12.6",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.2",
"ts-loader": "9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3",
"worker-loader": "^3.0.8"
}
}