-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.67 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
{
"name": "flosum_agent",
"version": "4.6.3-beta.0",
"description": "Flosum Agent",
"main": "index.js",
"engines": {
"node": "20.x"
},
"scripts": {
"start:dev": "node dist/",
"start": "node .",
"dev": "nodemon server/index.ts",
"test": "jest",
"compile": "ts-node build.ts && tsc --build tsconfig.build.json && babel dist -d dist",
"build-version": "npm install && npm run compile && bash build.version.sh"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"eslint server --fix",
"git add"
]
},
"dependencies": {
"@flosum/data-masking": "1.1.0",
"@flosum/salesforce": "1.11.2-beta.2",
"@flosum/utils": "1.0.6-beta.0",
"@salesforce/cli": "2.17.4",
"@xmldom/xmldom": "^0.8.10",
"adm-zip": "0.5.10",
"axios": "1.6.0",
"axios-retry": "3.8.1",
"body-parser": "1.20.2",
"class-transformer": "0.5.1",
"class-validator": "0.14.0",
"crc-32": "1.2.2",
"cron": "2.2.0",
"cross-spawn": "7.0.3",
"csv-parse": "5.5.2",
"csv-stringify": "6.4.4",
"debug": "4.3.4",
"dotenv": "10.0.0",
"express": "4.18.2",
"express-http-proxy": "1.6.3",
"express-openapi-validator": "4.13.8",
"form-data": "4.0.0",
"helmet": "5.1.0",
"https-proxy-agent": "5.0.1",
"jszip": "3.10.1",
"minimist": "1.2.8",
"nocache": "2.1.0",
"object-sizeof": "^2.6.3",
"reflect-metadata": "0.1.13",
"shortid": "2.2.16",
"typedi": "0.10.0",
"uuid": "9.0.1",
"vkbeautify": "0.99.3",
"x2js": "3.4.4",
"xml2js": "0.6.2"
},
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/core": "7.20.12",
"@types/adm-zip": "0.5.0",
"@types/cron": "2.0.0",
"@types/cross-spawn": "6.0.2",
"@types/debug": "4.1.5",
"@types/express": "4.17.13",
"@types/express-http-proxy": "1.6.3",
"@types/jest": "26.0.23",
"@types/minimist": "1.2.2",
"@types/node": "18.0.3",
"@types/shelljs": "0.8.8",
"@types/shortid": "0.0.29",
"@types/uuid": "8.3.4",
"@types/vkbeautify": "0.99.2",
"@types/xml2js": "0.4.11",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"babel-plugin-module-resolver": "5.0.0",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"javascript-obfuscator": "4.0.0",
"jest": "27.0.6",
"lint-staged": "13.0.3",
"nodemon": "2.0.20",
"prettier": "2.3.1",
"ts-jest": "27.0.3",
"ts-node": "10.8.1",
"tsconfig-paths": "4.1.0",
"typescript": "4.7.4"
},
"overrides": {
"javascript-obfuscator": {
"class-validator": "0.14.0"
}
}
}