-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 898 Bytes
/
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
{
"name": "docx-viewer",
"version": "0.2.0",
"description": "docx.js dev mode",
"main": "index.js",
"repository": "github.com/naskio/docx-viewer",
"author": "Mehdi Nassim KHODJA",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "echo \"Error: no build specified\" && exit 1",
"start": "nodemon -w .env -w index.js -w public/index.html index.js",
"forward_port": "ngrok http 3000",
"forward_port:lt": "lt --port 3000"
},
"devDependencies": {
"chokidar": "^3.5.2",
"docx": "^7.1.2",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"localtunnel": "^2.0.2",
"lodash.debounce": "^4.0.8",
"ngrok": "^4.2.2",
"nocache": "^3.0.1",
"nodemon": "^2.0.15",
"socket.io": "^4.3.2"
},
"nodemonConfig": {
"ext": "js"
}
}