-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.32 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.32 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "migration-v2-node-server",
"version": "1.0.0",
"description": "This is the TSO migration V2's node server",
"exports": "./src/server.ts",
"scripts": {
"build": "npx tsc",
"start": "NODE_ENV=production node dist/server.js",
"dev": "NODE_ENV=production tsx ./src/server.ts",
"prettify": "prettier --write .",
"windev": "SET NODE_ENV=production&& tsx watch ./src/server.ts",
"winstart": "SET NODE_ENV=production&& node dist/server.js",
"lint:fix": "eslint --ext .ts --ignore-pattern './node_modules/' --ignore-pattern './dist/'",
"precommit": "npm run prettify && npm run lint:fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"coverage:ui": "npx serve coverage -l 3939"
},
"repository": {
"type": "git",
"url": "git+https://github.com/contentstack/migration-v2.git"
},
"author": "Contentstack",
"license": "ISC",
"bugs": {
"url": "https://github.com/contentstack/migration-v2.git/issues"
},
"homepage": "https://github.com/contentstack/migration-v2.git#readme",
"dependencies": {
"@contentstack/cli": "^1.58.0",
"@contentstack/cli-utilities": "^1.17.1",
"@contentstack/json-rte-serializer": "^3.0.5",
"@contentstack/marketplace-sdk": "^1.5.0",
"@wordpress/block-serialization-default-parser": "^5.39.0",
"axios": "^1.13.5",
"cheerio": "^1.2.0",
"chokidar": "^3.6.0",
"cors": "^2.8.5",
"dayjs": "^1.11.18",
"diff": "^5.2.2",
"dotenv": "^16.6.1",
"express": "^4.22.0",
"express-validator": "^7.3.1",
"express-winston": "^4.2.0",
"fs-extra": "^11.2.0",
"fs-readdir-recursive": "^1.1.0",
"helmet": "^8.0.0",
"html-to-json-parser": "^2.0.1",
"jsdom": "^24.1.0",
"jsonwebtoken": "^9.0.3",
"lodash": "^4.18.1",
"lowdb": "^7.0.1",
"mkdirp": "^3.0.1",
"mysql2": "^3.16.2",
"p-limit": "^6.2.0",
"php-serialize": "^5.1.3",
"socket.io": "^4.7.5",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"@emnapi/core": "1.9.1",
"@emnapi/runtime" : "1.9.1",
"@emnapi/wasi-threads": "1.2.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.2",
"@types/fs-extra": "^11.0.4",
"@types/fs-readdir-recursive": "^1.1.3",
"@types/jsdom": "^21.1.7",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.17.0",
"@types/node": "^20.10.4",
"@types/supertest": "^6.0.3",
"@types/uuid": "^9.0.8",
"@types/wordpress__block-library": "^2.6.3",
"@types/wordpress__block-serialization-spec-parser": "^3.1.3",
"@types/wordpress__blocks": "^12.5.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1",
"supertest": "^7.2.2",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"vitest": "^4.0.18"
},
"overrides": {
"qs": ">=6.14.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",
"undici": ">=7.24.0"
},
"keywords": []
}