-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "multilingual-chat",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"postinstall": "tsc && npm run htmlcopy && npm run csscopy",
"htmlcopy": "copyfiles -f src/public/*.html dist/public",
"csscopy": "copyfiles -f src/public/*.css dist/public",
"watch-ts": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meroo36/multilingual-chat.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/meroo36/multilingual-chat/issues"
},
"homepage": "https://github.com/meroo36/multilingual-chat#readme",
"dependencies": {
"copyfiles": "^2.4.1",
"deepl": "^1.0.13",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"livereload": "^0.9.3",
"npm": "^8.2.0",
"socket.io": "^4.4.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.11",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}