generated from K-FOSS/TS-Core-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.11 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
{
"name": "ts-autonetworks",
"version": "0.0.1",
"description": "TS-AutoNetwork is a network automation and proactive montiroing system",
"main": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"test": "ts-estest ./src/",
"prepublishOnly": "npm run build",
"build": "tsc -p ./tsconfig.build.json",
"start:debug": "node --loader @k-foss/ts-esnode --experimental-modules --experimental-specifier-resolution=node --harmony-top-level-await ./",
"dev": "nodemon",
"prettier": "prettier --config .prettierrc --check \"src/**/*ts\"",
"lint": "eslint ./src --ext .js,.ts",
"run:generateSchema": "node --loader @k-foss/ts-esnode --experimental-modules --experimental-specifier-resolution=node --harmony-top-level-await ./src/bin/generateSchema.ts",
"runBin": "node --loader @k-foss/ts-esnode --experimental-modules --experimental-specifier-resolution=node --harmony-top-level-await ./src/Utils/runScript.ts"
},
"devDependencies": {
"@eclass/semantic-release-docker": "^1.0.6",
"@k-foss/ts-estests": "^1.0.6",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/js-yaml": "^4.0.0",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"json-schema-to-typescript": "^10.1.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"semantic-release": "^17.3.3"
},
"author": "",
"license": "MIT",
"dependencies": {
"@k-foss/ts-esnode": "^1.7.0",
"ajv": "^7.0.3",
"bullmq": "^1.14.0",
"fast-xml-parser": "^3.17.6",
"fluent-json-schema": "^2.0.3",
"got": "^11.8.1",
"ip-address": "^7.1.0",
"js-yaml": "^3.14.1",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"typescript": "^4.1.3",
"xbytes": "^1.7.0"
}
}