-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
125 lines (125 loc) · 3.91 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
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
{
"name": "bulwark",
"version": "7.3.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",
"migration:init": "typeorm migration:generate -n CreateDatabase && rimraf dist && tsc",
"migration:generate": "typeorm migration:generate -n Refactor && rimraf dist && tsc",
"migration:create": "typeorm migration:create -n newInit && rimraf dist && tsc",
"migration:revert": "typeorm migration:revert",
"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",
"Ryan Mathus",
"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": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.23",
"babel-jest": "^27.0.2",
"cz-conventional-changelog": "^3.3.0",
"highlight.js": ">=11.0.1",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"mock-express-request": "^0.2.2",
"mock-express-response": "^0.3.0",
"prettier": "2.3.1",
"rimraf": "^3.0.2",
"sqlite3": "^5.0.2",
"standard-version": "^9.3.0",
"ts-jest": "^27.0.3",
"tsc-watch": "^4.2.9",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"class-validator": "^0.13.1",
"concurrently": "^6.2.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jira-client": "^6.21.1",
"jira2md": "^2.1.0",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.31",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"node-fetch": "^2.6.7",
"nodemailer": "^6.6.2",
"password-validator": "^5.1.1",
"puppeteer": "^10.0.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typeorm": "^0.2.34",
"uuid": "^8.3.2"
},
"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"
}
}