-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.58 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.58 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
{
"name": "migration-v2",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"env": "npm start",
"api": "cd ./api && npm run dev",
"upload": "cd ./upload-api && npm run start",
"ui": "cd ./ui && npm start",
"setup:file": "npm i && node fileUpdate.js",
"create:env": "node index.js",
"setup:mac": "bash setup.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/contentstack/migration-v2.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/contentstack/migration-v2.git/issues"
},
"homepage": "https://github.com/contentstack/migration-v2.git#readme",
"devDependencies": {
"husky": "^4.3.8",
"validate-branch-name": "^1.3.0"
},
"overrides": {
"axios": ">=1.15.2",
"nth-check": ">=2.0.1",
"postcss": ">=8.5.10",
"serialize-javascript": ">=6.0.2",
"@babel/runtime": ">=7.26.10",
"lodash": "^4.18.1",
"lodash-es": "^4.18.1",
"undici": "^7.18.2",
"tmp": ">=0.2.4",
"minimatch": ">=10.2.3",
"ajv": ">=8.18.0",
"glob": ">=11.1.0",
"rollup": ">=4.59.0",
"tar": ">=7.5.8",
"@tootallnate/once": ">=3.0.1",
"fast-xml-parser": ">=5.3.8",
"diff": ">=5.2.2"
},
"husky": {
"hooks": {
"pre-commit": "npx validate-branch-name"
}
},
"validate-branch-name": {
"pattern": "^(feature|bugfix|hotfix)/[a-z0-9-]{5,30}$",
"errorMsg": "Please add valid branch name!"
},
"dependencies": {
"@contentstack/cli-utilities": "^1.18.3",
"qs": "^6.14.2"
}
}