-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.08 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.08 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "bulwark",
"version": "8.0.0",
"description": "An organizational asset and vulnerability management tool",
"main": "index.js",
"scripts": {
"test:node": "node_modules/.bin/jest --config=jest.config.js --collectCoverage",
"test:front": "cd frontend && npm run-script test",
"test": "npm run-script test:node && npm run-script test:front",
"start": "node dist/app.js",
"start:dev": "concurrently --kill-others \"npm run tsc:watch\" \"npm run ngServe\"",
"ngServe": "cd frontend && npm run-script start:dev",
"tsc:watch": "./node_modules/.bin/tsc-watch --onSuccess \"npm start\"",
"build:prod": "cd frontend && npm run-script build:prod",
"build:dev": "cd frontend && npm run-script build:dev",
"preinstall": "cd frontend && npm install",
"postinstall": "rimraf dist && tsc && npm run config && npm run build:prod",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"docker:check": "node dist/init/docker-run-exec.js",
"migration:run": "typeorm migration:run -d src/data-source.ts",
"migration:init": "typeorm migration:generate -d src/data-source.ts CreateDatabase && rimraf dist && tsc",
"migration:generate": "typeorm migration:generate -d src/data-source.ts Refactor && rimraf dist && tsc",
"migration:create": "typeorm migration:create -d src/data-source.ts newInit && rimraf dist && tsc",
"migration:revert": "typeorm migration:revert -d src/data-source.ts",
"tsc": "rimraf dist && tsc",
"lint": "tslint --project . && cd frontend && npm run-script lint",
"lint:fix": "tslint --fix --project . && cd frontend && npm run-script lint --fix=true",
"release": "standard-version",
"commit": "npx git-cz",
"config": "node dist/init/setEnv.js"
},
"keywords": [
"web security",
"web application security",
"webappsec",
"owasp",
"pentest",
"pentesting",
"security",
"vulnerable",
"vulnerability"
],
"author": "Softrams https://www.softrams.com",
"contributors": [
"Bill Jones",
"Joshua Seidel",
"Darrell Richards",
"Alexandre Zanni",
"Brett Mayen",
"Boucham Amine",
"Mark Muth"
],
"repository": {
"type": "git",
"url": "https://github.com/softrams/bulwark.git"
},
"license": "MIT",
"devDependencies": {
"@angular/cli": "^18.2.1",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/jest": "29.5.12",
"@types/node": "^22.5.0",
"babel-jest": "29.7.0",
"cz-conventional-changelog": "^3.3.0",
"highlight.js": ">=11.10.0",
"husky": "^9.1.5",
"jest": "29.7.0",
"lint-staged": "^15.2.9",
"mock-express-request": "^0.2.2",
"mock-express-response": "^0.3.0",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"sqlite3": "^5.1.7",
"standard-version": "^9.5.0",
"ts-jest": "29.2.5",
"tsc-watch": "^6.2.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"class-validator": "^0.14.1",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"jira-client": "^8.2.2",
"jira2md": "^3.0.1",
"jsonwebtoken": "^9.0.2",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"node-fetch": "^2.6.7",
"nodemailer": "^6.9.14",
"password-validator": "^5.3.0",
"prod": "^1.0.1",
"puppeteer": "^23.2.0",
"reflect-metadata": "^0.2.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typeorm": "^0.3.20",
"uuid": "^10.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*": "prettier --write"
}
}