-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1000 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1000 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
{
"name": "metatech-university-nodejs2023-system-pure",
"version": "1.0.0",
"description": "System layer (application runtime) built using pure Node.js functionality. Metatech University educational project by Vladyslav Karpenko (KLarpen). Course NodeJS 2022-2023: how to use DDD, SOLID, GRASP and GoF in JavaScript and Node.js",
"license": "MIT",
"private": true,
"main": "main.js",
"scripts": {
"test": "npm run lint && tsc",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.ts\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.ts\""
},
"engines": {
"node": "16 || 18 || 19 || 20"
},
"dependencies": {
"pg": "^8.11.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/node": "^20.3.1",
"@types/pg": "^8.10.2",
"@types/ws": "^8.5.5",
"eslint": "^8.43.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.3"
}
}