-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "security-documents-generator",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"type": "commonjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "tsc --noEmit",
"start": "tsx src/index",
"lint": "eslint",
"checks": "yarn typecheck && yarn lint"
},
"engines": {
"node": "22.14.0",
"yarn": "^1.22.19"
},
"author": "",
"license": "ISC",
"dependencies": {
"@elastic/elasticsearch": "^8.6.0",
"@faker-js/faker": "^9.0.0",
"chalk": "^5.2.0",
"cli-progress": "^3.12.0",
"commander": "^13.0.0",
"conf": "^13.0.0",
"fp-ts": "^2.16.5",
"globals": "^16.0.0",
"@inquirer/prompts": "^7.3.1",
"io-ts": "^2.2.21",
"lodash-es": "^4.17.21",
"moment": "^2.29.4",
"node-fetch": "^3.3.1",
"p-map": "^7.0.2",
"readline": "^1.3.0",
"tsx": "^4.7.1",
"url-join": "^5.0.0",
"uuid": "^11.0.0"
},
"devDependencies": {
"@types/cli-progress": "3.11.6",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.24.1",
"@typescript-eslint/parser": "8.24.1",
"@types/lodash-es": "4.17.12",
"esbuild": "0.25.0",
"eslint": "9.20.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"prettier": "3.5.1",
"typescript": "5.7.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0"
}
}