-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 783 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 783 Bytes
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
{
"name": "wopi-server",
"version": "0.0.1",
"description": "A sample WOPI Server written with TypeScript/Node.js",
"main": "src/index.js",
"scripts": {
"start": "ts-node src/index.ts"
},
"keywords": [
"WOPI"
],
"author": "Michael Bowen",
"license": "MIT",
"dependencies": {
"dotenv": "^8.2.0",
"emailjs-utf7": "^4.0.1",
"express": "^4.17.1",
"ts-node": "^10.9.1",
"valid-filename": "^3.1.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/eslint": "^8.4.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.15.0",
"eslint-config-google": "^0.14.0",
"typescript": "^4.6.4"
}
}