forked from metatech-university/NodeJS-Pure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 792 Bytes
/
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
{
"name": "nodejs-pure",
"version": "13.0.0",
"description": "Pure NodeJS application runtime",
"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": {
"metautil": "^5.2.0",
"pg": "^8.11.1",
"ws": "^8.12.0"
},
"devDependencies": {
"@types/node": "^20.4.4",
"@types/pg": "^8.10.2",
"@types/ws": "^8.5.5",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}