-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 978 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 978 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
33
34
35
{
"name": "nodejs-application-metatech",
"version": "1.0.0",
"description": "Framework agnostic NodeJS application structure built on the foundation of Metatech University",
"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/NodeJS-Application-Metatech.git"
},
"engines": {
"node": "16 || 18 || 19 || 20"
},
"author": "Malodied",
"license": "MIT",
"dependencies": {
"metasql": "^3.0.0-alpha.1",
"pg": "^8.10.0"
},
"devDependencies": {
"@types/node": "v20.3.1",
"@types/pg": "^8.6.6",
"@types/ws": "^8.5.4",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"typescript": "^5.0.3"
}
}