-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.27 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.27 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
{
"name": "migration-upload",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm --prefix migration-aem run build && tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build &&tsc && node build/index.js",
"startNew": "tsc && node build/index.js",
"validation": "tsc && node build/main.js",
"prettify": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx . --ignore-pattern './node_modules/' --ignore-pattern './buid/' --ignore-pattern '.eslintrc.js'",
"precommit": "npm run prettify && npm run lint:fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/inquirer": "^9.0.7",
"@types/lodash.isempty": "^4.4.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.12.12",
"@types/uuid": "^9.0.8",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"helmet": "^7.1.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.529.0",
"@contentstack/cli-utilities": "^1.14.2",
"@typescript-eslint/parser": "^8.0.0",
"axios": "^1.12.0",
"body-parser": "^2.2.1",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eslint": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^5.0.0",
"express": "^5.2.1",
"express-rate-limit": "^7.2.0",
"inquirer": "^9.2.15",
"js-yaml": "^4.1.1",
"jszip": "^3.10.1",
"lodash.isempty": "^4.4.0",
"migration-aem": "file:migration-aem",
"migration-contentful": "file:migration-contentful",
"migration-sitecore": "file:migration-sitecore",
"migration-wordpress": "file:migration-wordpress",
"multer": "^2.1.0",
"node-fetch": "^2.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.3.3",
"qs": "^6.14.1",
"tmp": "^0.2.5",
"uuid": "^9.0.1",
"xml2js": "^0.6.2"
},
"overrides": {
"tmp": "^0.2.5"
}
}