-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.34 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.34 KB
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
{
"name": "TSViewer",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"axios": "^0.17.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"fastify": "^0.36.0",
"fastify-helmet": "^1.0.2",
"fastify-static": "^0.5.0",
"gridfs-stream": "^1.1.1",
"lodash": "^4.17.4",
"mdi": "^2.1.19",
"moment": "^2.20.1",
"mongoose": "^4.13.7",
"node-telegram-bot-api": "^0.30.0",
"progress": "^2.0.0",
"promise-queue": "^2.2.3",
"rss": "^1.2.2",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"stream-mmmagic": "^2.0.0",
"teamspeak-query": "^1.5.4",
"telegraf": "^3.17.2",
"v-img": "^0.1.9",
"vue": "^2.5.13",
"vuetify": "^0.17.5"
},
"devDependencies": {
"cross-env": "^5.1.2",
"parcel-bundler": "^1.2.1",
"parcel-plugin-vue": "^1.4.0"
},
"scripts": {
"build": "node generateSettings.js && cross-env NODE_ENV=production parcel build src/index.html -d public/ --public-url ./",
"watch": "node generateSettings.js && cross-env NODE_ENV=development parcel watch src/index.html -d public/ --public-url ./",
"dockerstartup": "npm run-script build && npm run-script start",
"start": "cross-env NODE_ENV=production node index.js",
"docker": "docker build -t 3003/tsviewer . && docker push 3003/tsviewer"
}
}