-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 765 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 765 Bytes
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
{
"name": "julman-web-server",
"version": "1.0.0",
"description": "A Web Server built in TypeScript",
"main": "index.ts",
"scripts": {
"start": "npm run build && node out",
"test": "echo \"Error: no test specified\" && exit 1",
"nodemon-test": "nodemon -e ts -i \"out\" --exec \"cls && tsc && node out --port 3000\"",
"build": "tsc"
},
"keywords": [
"web",
"server",
"node"
],
"author": "JulMan",
"license": "MIT",
"dependencies": {
"canvas": "^3.1.0",
"js-yaml": "^4.1.0",
"node-fetch": "^2.6.7",
"ws": "^7.5.7"
},
"devDependencies": {
"typescript": "^4.9.5",
"@types/js-yaml": "^4.0.2",
"@types/node": "^16.3.0",
"@types/node-fetch": "^2.5.11",
"@types/ws": "^7.4.6"
}
}