-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "chat-ws-server",
"version": "1.0.0",
"description": "A more straight forward approach",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint node_modules/.bin/eslint './**' --fix",
"tsb": "tsc --outDir build --esModuleInterop --resolveJsonModule --lib es6 --module commonjs --allowJs true --noImplicitAny true",
"start": "node node_modules/.bin/babel-node ./build/index.js",
"ts-build": "bash bin/bash/build-clean.bash && npm run tsb",
"ts-start": "node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheMachineHerald/Chat-WS-Server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheMachineHerald/Chat-WS-Server/issues"
},
"homepage": "https://github.com/TheMachineHerald/Chat-WS-Server#readme",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/node": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@types/express": "^4.17.13",
"@types/http-server": "^0.12.1",
"@types/node": "^16.11.6",
"@types/ws": "^8.2.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"typescript": "^4.4.4"
},
"dependencies": {
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"ws": "^8.2.3"
}
}