-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 KB
/
package.json
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
{
"name": "newsletter-api",
"version": "1.0.0",
"description": "Scrap API to return newsletters",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build",
"start": "node dist/main/server.js",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules src/main/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjeanjacques10/newsletter-api.git"
},
"author": "Jean Jacques Barros <https://github.com/jjeanjacques10>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jjeanjacques10/newsletter-api/issues"
},
"homepage": "https://github.com/jjeanjacques10/newsletter-api#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.11",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"fast-glob": "^3.2.11",
"google-spreadsheet": "^3.3.0",
"ioredis": "^5.0.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-snakecasejs": "^2.2.0",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.5.5"
}
}