-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "@nictool/api",
"version": "3.0.0-alpha.5",
"description": "NicTool API",
"main": "index.js",
"type": "module",
"scripts": {
"format": "npm run lint:fix && npm run prettier:fix",
"lint": "npx eslint *.js **/*.js",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier *.js conf.d lib routes html --check",
"prettier:fix": "npx prettier *.js conf.d lib routes html --write",
"start": "NODE_ENV=production node ./server",
"develop": "NODE_ENV=development node ./server",
"test": "./test.sh",
"versions": "npx dependency-version-checker check",
"watch": "./test.sh watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NicTool/api.git"
},
"keywords": [
"nictool",
"api",
"dns",
"management"
],
"author": "Matt Simerson <matt@tnpi.net>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/NicTool/api/issues"
},
"homepage": "https://github.com/NicTool/api#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-syntax-import-attributes": "^7.23.3",
"eslint": "^8.57.0"
},
"dependencies": {
"@hapi/cookie": "^12.0.1",
"@hapi/hapi": "^21.3.3",
"@hapi/hoek": "^11.0.4",
"@hapi/inert": "^7.1.0",
"@hapi/vision": "^7.0.3",
"@nictool/dns-resource-record": "^1.2.1",
"@nictool/validate": "^0.8.0",
"hapi-swagger": "^17.2.1",
"mysql2": "^3.9.2",
"qs": "^6.11.2",
"yaml": "^2.4.0"
}
}