-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.37 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.37 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
{
"name": "adobe-enterprise-automation",
"version": "2.0.0",
"description": "Enterprise-scale Adobe Creative Cloud automation system",
"main": "api/server.js",
"scripts": {
"start": "node api/server.js",
"dev": "nodemon api/server.js",
"worker:servicenow": "node workers/servicenow-worker.js",
"worker:pdf": "node workers/pdf-worker.js",
"test": "jest --config config/jest.config.js --coverage",
"test:watch": "jest --config config/jest.config.js --watch",
"lint": "eslint . --config config/.eslintrc.json --ext .js,.jsx",
"format": "prettier --config config/.prettierrc.json --ignore-path config/.prettierignore --write \"**/*.{js,jsx,json,md}\"",
"build": "webpack --config config/webpack.config.js --mode production",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"monitor": "node monitoring/server.js",
"security:audit": "npm audit",
"security:fix": "npm audit fix"
},
"keywords": [
"adobe",
"creative-cloud",
"automation",
"enterprise",
"user-management",
"license-optimization"
],
"author": "Wesley Ellis",
"license": "MIT",
"dependencies": {
"axios": "^1.6.7",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.19.2",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"mssql": "^11.0.1",
"multer": "^2.0.2",
"node-cron": "^3.0.3",
"prom-client": "^15.1.0",
"redis": "^4.6.12",
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@types/node": "^20.11.5",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"supertest": "^6.3.4",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wesellis/adobe-enterprise-automation.git"
},
"bugs": {
"url": "https://github.com/wesellis/adobe-enterprise-automation/issues"
},
"homepage": "https://github.com/wesellis/adobe-enterprise-automation#readme"
}