-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.51 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
{
"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": {
"@types/estree": "^1.0.7",
"@types/express": "^5.0.1",
"husky": "^4.3.8",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"validate-branch-name": "^1.3.0",
"xml2js": "^0.5.0"
},
"overrides": {
"nth-check": ">=2.0.1",
"postcss": ">=8.4.31",
"serialize-javascript": ">=6.0.2",
"@babel/runtime": ">=7.26.10",
"tmp": "^0.2.5"
},
"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.14.4",
"express-validator": "^7.3.1",
"js-yaml": "^4.1.1",
"qs": "^6.14.1",
"tmp": "^0.2.5",
"validator": "^13.15.26"
}
}