-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.42 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
{
"name": "livetext",
"version": "1.0.0",
"description": "Stream text to your audience",
"scripts": {
"dev": "npm-run-all --parallel serve:*",
"serve:server": "npx ts-node-dev --respawn index.ts",
"serve:client": "npm run clean && npx parcel watch 'app/*.html' --dist-dir public",
"build": "npm run clean && npx parcel build 'app/*.html' --dist-dir public",
"clean": "rm -rf public/ && mkdir public/",
"start": "pm2-runtime --interpreter node_modules/.bin/ts-node ./index.ts"
},
"author": "Markus Dosch <[email protected]>",
"license": "ISC",
"dependencies": {
"@codemirror/basic-setup": "^0.19.0",
"@codemirror/lang-markdown": "^0.19.1",
"@codemirror/state": "^0.19.2",
"express": "^4.17.1",
"highlight.js": "^11.2.0",
"lodash": "^4.17.21",
"markdown-it": "^12.2.0",
"morgan": "^1.10.0",
"pm2": "^5.1.2",
"share-api-polyfill": "^1.0.21",
"socket.io": "^4.2.0",
"socket.io-client": "^4.2.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.175",
"@types/markdown-it": "^12.2.3",
"@types/morgan": "^1.9.3",
"npm-run-all": "^4.1.5",
"parcel": "^2.0.0",
"parcel-reporter-static-files-copy": "^1.3.0",
"prettier": "^2.4.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"targets": {
"main": false
},
"staticFiles": {
"staticPath": "static",
"distDir": "public"
}
}