-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 957 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 957 Bytes
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
{
"name": "datasync-boilerplate",
"version": "1.3.4",
"description": "A boilerplate that has the code skeleton to help you get up and running with Contentstack DataSync.",
"main": "index.js",
"scripts": {
"continue": "node index.js",
"start": "npm run clean && node index.js",
"clean": "node clean.js"
},
"dependencies": {
"@contentstack/datasync-asset-store-filesystem": "^2.3.3",
"@contentstack/datasync-content-store-filesystem": "^2.1.10",
"@contentstack/datasync-content-store-mongodb": "^1.0.12",
"@contentstack/datasync-manager": "^2.4.0-beta.1",
"@contentstack/webhook-listener": "^1.1.2"
},
"devDependencies": {
"eslint": "^8.57.1",
"rimraf": "^4.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/contentstack/datasync-boilerplate"
},
"author": "Contentstack LLC <support@contentstack.com>",
"license": "MIT",
"overrides": {
"lodash": "4.18.1"
}
}