-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.48 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
{
"name": "amazon-modern-widgets",
"version": "4.0.0",
"description": "Amazon Modern Widgets for Amazon affiliate websites based on Amazon PAAPI v5",
"license": "MIT",
"author": "Ludovic Toinel",
"main": "dist/main.js",
"dependencies": {
"amazon-creators-api": "^1.2.2",
"config": "^4.4.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-cache-controller": "^1.1.0",
"ioredis": "^5.10.1",
"js-yaml": "^4.1.1",
"typescript-logging": "^2.2.0",
"typescript-logging-log4ts-style": "^2.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/dom": "^10.4.1",
"@types/config": "^4.4.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/ioredis": "^5.0.0",
"@types/jest": "^30.0.0",
"@types/jsdom": "^28.0.3",
"@types/node": "^25.7.0",
"@types/supertest": "^7.2.0",
"cross-env": "^10.1.0",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"html-minifier-terser": "^7.2.0",
"jest": "^30.4.2",
"jsdom": "^29.1.1",
"release-it": "^20.0.1",
"supertest": "^7.2.2",
"terser": "^5.47.1",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3"
},
"scripts": {
"build": "tsc && npm run build:widgets",
"build:widgets": "node scripts/build-widgets.js",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"start": "node .",
"dev": "cross-env NODE_ENV=development ts-node --watch src/main.ts",
"test": "jest",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"docker": "./docker/scripts/start.sh",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ltoinel/amw.git"
},
"keywords": [
"amazon",
"partner",
"widget",
"blog",
"affiliation",
"paapi",
"paapi5-nodejs-sdk",
"web",
"express",
"typescript",
"docker",
"redis",
"amazon-affiliate",
"product-api"
],
"bugs": {
"url": "https://github.com/ltoinel/amw/issues"
},
"homepage": "https://github.com/ltoinel/amw#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"files": [
"dist/",
"config/",
"resources/",
"@types/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"release-it": {
"github": {
"release": true
}
}
}