-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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": "chess-api",
"description": "A RESTful Chess API made using Node.JS.",
"version": "1.0",
"author": "-_YoYo178_-",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/YoYo178/Chess-API.git"
},
"homepage": "https://github.com/YoYo178/Chess-API",
"bugs": "https://github.com/YoYo178/Chess-API/issues",
"keywords": [
"chess",
"chess-api",
"api",
"rest-api",
"restful-api",
"game"
],
"main": "./bin/www",
"scripts": {
"start": "node ./dist/bin/www.js",
"build": "tsc -p tsconfig.json",
"build-debug": "tsc -p tsconfig.json --inlineSourceMap"
},
"dependencies": {
"cookie-parser": "~1.4.7",
"cors": "^2.8.5",
"debug": "~4.4.0",
"express": "^4.21.2",
"http-errors": "~2.0.0",
"jade": "~1.11.0",
"morgan": "~1.10.0"
},
"packageManager": "yarn@4.6.0",
"devDependencies": {
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
}
}