tango-app-api-store-builder 1.0.0-beta-111 → 1.0.0-beta-112
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -28
- package/inputjson/layoutverification.json +465 -209
- package/package.json +50 -50
- package/response.json +646 -646
- package/src/controllers/managePlano.controller.js +172 -9
- package/src/controllers/script.controller.js +58 -59
- package/src/controllers/task.controller.js +1 -1
- package/src/routes/managePlano.routes.js +1 -0
package/package.json
CHANGED
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "tango-app-api-store-builder",
|
|
3
|
-
"version": "1.0.0-beta-
|
|
4
|
-
"description": "storeBuilder",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"start": "nodemon --exec \"eslint --fix . && node index.js\""
|
|
9
|
-
},
|
|
10
|
-
"engines": {
|
|
11
|
-
"node": ">=18.10.0"
|
|
12
|
-
},
|
|
13
|
-
"author": "praveenraj",
|
|
14
|
-
"license": "ISC",
|
|
15
|
-
"dependencies": {
|
|
16
|
-
"aws-sdk": "^2.1692.0",
|
|
17
|
-
"chromedriver": "^135.0.1",
|
|
18
|
-
"cors": "^2.8.5",
|
|
19
|
-
"dayjs": "^1.11.13",
|
|
20
|
-
"dotenv": "^16.4.7",
|
|
21
|
-
"exceljs": "^4.4.0",
|
|
22
|
-
"express": "^4.21.2",
|
|
23
|
-
"express-fileupload": "^1.5.1",
|
|
24
|
-
"fetch-cookie": "^3.1.0",
|
|
25
|
-
"handlebars": "^4.7.8",
|
|
26
|
-
"joi": "^17.13.3",
|
|
27
|
-
"jszip": "^3.10.1",
|
|
28
|
-
"mongodb": "^6.12.0",
|
|
29
|
-
"node-fetch": "^2.7.0",
|
|
30
|
-
"nodemon": "^3.1.9",
|
|
31
|
-
"os": "^0.1.2",
|
|
32
|
-
"path": "^0.12.7",
|
|
33
|
-
"selenium-webdriver": "^4.31.0",
|
|
34
|
-
"sharp": "^0.34.1",
|
|
35
|
-
"tango-api-schema": "2.2.151",
|
|
36
|
-
"tango-app-api-middleware": "3.1.48",
|
|
37
|
-
"url": "^0.11.4",
|
|
38
|
-
"winston": "^3.17.0",
|
|
39
|
-
"winston-daily-rotate-file": "^5.0.0",
|
|
40
|
-
"xlsx": "^0.18.5"
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"eslint": "^8.57.1",
|
|
44
|
-
"eslint-config-google": "^0.14.0",
|
|
45
|
-
"eslint-config-semistandard": "^17.0.0",
|
|
46
|
-
"eslint-config-standard": "^17.1.0",
|
|
47
|
-
"eslint-plugin-import": "^2.31.0",
|
|
48
|
-
"eslint-plugin-promise": "^6.6.0"
|
|
49
|
-
}
|
|
50
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "tango-app-api-store-builder",
|
|
3
|
+
"version": "1.0.0-beta-112",
|
|
4
|
+
"description": "storeBuilder",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"start": "nodemon --exec \"eslint --fix . && node index.js\""
|
|
9
|
+
},
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=18.10.0"
|
|
12
|
+
},
|
|
13
|
+
"author": "praveenraj",
|
|
14
|
+
"license": "ISC",
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"aws-sdk": "^2.1692.0",
|
|
17
|
+
"chromedriver": "^135.0.1",
|
|
18
|
+
"cors": "^2.8.5",
|
|
19
|
+
"dayjs": "^1.11.13",
|
|
20
|
+
"dotenv": "^16.4.7",
|
|
21
|
+
"exceljs": "^4.4.0",
|
|
22
|
+
"express": "^4.21.2",
|
|
23
|
+
"express-fileupload": "^1.5.1",
|
|
24
|
+
"fetch-cookie": "^3.1.0",
|
|
25
|
+
"handlebars": "^4.7.8",
|
|
26
|
+
"joi": "^17.13.3",
|
|
27
|
+
"jszip": "^3.10.1",
|
|
28
|
+
"mongodb": "^6.12.0",
|
|
29
|
+
"node-fetch": "^2.7.0",
|
|
30
|
+
"nodemon": "^3.1.9",
|
|
31
|
+
"os": "^0.1.2",
|
|
32
|
+
"path": "^0.12.7",
|
|
33
|
+
"selenium-webdriver": "^4.31.0",
|
|
34
|
+
"sharp": "^0.34.1",
|
|
35
|
+
"tango-api-schema": "2.2.151",
|
|
36
|
+
"tango-app-api-middleware": "^3.1.48",
|
|
37
|
+
"url": "^0.11.4",
|
|
38
|
+
"winston": "^3.17.0",
|
|
39
|
+
"winston-daily-rotate-file": "^5.0.0",
|
|
40
|
+
"xlsx": "^0.18.5"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"eslint": "^8.57.1",
|
|
44
|
+
"eslint-config-google": "^0.14.0",
|
|
45
|
+
"eslint-config-semistandard": "^17.0.0",
|
|
46
|
+
"eslint-config-standard": "^17.1.0",
|
|
47
|
+
"eslint-plugin-import": "^2.31.0",
|
|
48
|
+
"eslint-plugin-promise": "^6.6.0"
|
|
49
|
+
}
|
|
50
|
+
}
|