forked from georgolden/node-soa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 973 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 973 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
36
37
38
{
"name": "node-soa",
"version": "0.0.0",
"description": "Node js SOA example",
"type": "module",
"main": "main.js",
"scripts": {
"check": "npx tsc --project .",
"start": "node main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/georgolden/node-soa.git"
},
"author": "Georg Oldenburger",
"license": "MIT",
"bugs": {
"url": "https://github.com/georgolden/node-soa/issues"
},
"homepage": "https://github.com/georgolden/node-soa#readme",
"engines": {
"node": "18"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^18.7.8",
"@types/ws": "^8.5.3",
"eslint": "^8.22.0",
"eslint-config-metarhia": "^8.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"metatests": "^0.8.2",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}