generated from metarhia/Example
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "b-os-demo",
"version": "0.1.0",
"author": "Timur Shemsedinov <[email protected]>",
"description": "B-OS Demo Application",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/b-os-tech/Demo"
},
"bugs": {
"url": "https://github.com/b-os-tech/Demo/issues"
},
"homepage": "https://github.com/b-os-tech/Demo",
"main": "server.js",
"types": "types/global.d.ts",
"scripts": {
"test": "npm run lint && npm run types && node test/system.js",
"types": "tsc",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\"",
"db": "metasql c"
},
"engines": {
"node": "14 || 16 || 18"
},
"devDependencies": {
"@types/node": "^17.0.31",
"@types/pg": "^8.6.5",
"@types/ws": "^8.5.3",
"eslint": "^8.15.0",
"metatests": "^0.8.2",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
},
"dependencies": {
"impress": "^2.6.10",
"lowscript": "^0.0.5",
"metasql": "^2.0.3",
"pg": "^8.7.3",
"redis": "^4.1.0"
}
}