-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.13 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "edge-monitor-server",
"version": "0.0.1",
"private": false,
"description": "Monitoring server of Edge infrastructure",
"homepage": "https://github.com/EdgeApp/edge-monitor-server#readme",
"bugs": {
"url": "https://github.com/EdgeApp/edge-monitor-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EdgeApp/edge-monitor-server.git"
},
"license": "MIT",
"author": "Paul Puey <paul@edge.app>",
"main": "lib/indexEngines.js",
"scripts": {
"build": "sucrase -q -t typescript,imports -d ./lib ./src",
"clean": "rimraf lib",
"configure": "configure",
"fix": "eslint . --fix",
"lint": "eslint .",
"precommit": "lint-staged && npm-run-all types prepare",
"prepare": "husky install && npm-run-all clean configure build",
"start:api": "node -r sucrase/register src/indexApi.ts",
"start:engine": "node -r sucrase/register src/indexEngine.ts",
"start": "npm-run-all start:engine",
"test": "mocha -r sucrase/register 'test/**/*.test.ts'",
"types": "tsc",
"verify": "npm-run-all lint types test prepare"
},
"lint-staged": {
"*.{js,ts}": "eslint"
},
"dependencies": {
"cleaners": "^0.3.16"
},
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/express": "^4.17.19",
"@types/mocha": "^5.2.7",
"@types/node": "^20.8.5",
"@types/node-fetch": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"chai": "^4.3.10",
"cleaner-config": "^0.1.10",
"edge-server-tools": "^0.2.18",
"eslint": "^7.14.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^6.0.1",
"express": "^4.17.1",
"husky": "^8.0.3",
"lint-staged": "^10.5.3",
"mocha": "^6.2.2",
"nano": "^9.0.4",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.0",
"rimraf": "^3.0.0",
"serverlet": "^0.1.1",
"sucrase": "^3.16.0",
"typescript": "^4.6.2"
}
}