-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 KB
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
{
"name": "server",
"version": "1.0.0",
"description": "Server of CelestialWings",
"main": "main.js",
"scripts": {
"test": "npm run lint && tsc",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.ts\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/maloded/CelestialWings.git"
},
"keywords": [
"airline"
],
"author": "Malodied",
"license": "MIT",
"bugs": {
"url": "https://github.com/maloded/CelestialWings/issues"
},
"homepage": "https://github.com/maloded/CelestialWings#readme",
"engines": {
"node": "16 || 18 || 19 || 20"
},
"dependencies": {
"pg": "^8.11.1",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/node": "^20.3.3",
"@types/pg": "^8.10.2",
"@types/ws": "^8.5.5",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"typescript": "^5.1.6"
}
}