-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.24 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
{
"name": "excel-custom-functions",
"version": "2.0.0",
"main": "./src/customfunctions.ts",
"typings": "lib/index.d.ts",
"scripts": {
"start": "concurrently \"npm run dev-server\" \"npm run watch\" \"npm run sideload\"",
"start-web": "concurrently \"npm run dev-server\" \"npm run watch\"",
"build": "webpack -p --mode production",
"dev-server": "webpack-dev-server --mode development --https --key ./certs/server.key --cert ./certs/server.crt --cacert ./certs/ca.crt --port 8081 --hotOnly",
"sideload": "office-toolbox sideload -m manifest.xml -a excel",
"watch": "webpack -p --mode development --watch"
},
"devDependencies": {
"@aspnet/signalr": "^1.1.0",
"@types/custom-functions-runtime": "^1.4.8",
"clean-webpack-plugin": "^0.1.19",
"concurrently": "^4.0.1",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"office-addin-node-debugger": "^0.1.0",
"office-toolbox": "^0.1.0",
"ts-loader": "^4.4.2",
"typescript": "^2.7.2",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"@types/office-runtime": "^1.0.6",
"@types/signalr": "^2.2.35"
}
}