-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.62 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
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
{
"name": "rsstodolist-node-server",
"version": "1.1.0",
"description": "rsstodolist server in node",
"main": "src/index.mjs",
"type": "module",
"scripts": {
"start": "NODE_ENV=production node --experimental-json-modules src/index.mjs",
"dump": "NODE_ENV=production node --experimental-json-modules src/dump.mjs",
"dev": "nodemon --experimental-json-modules src/index.mjs",
"tdd": "jest --watch",
"test": "jest",
"docker-build": "docker build -t rsstodolist -f ./Dockerfile ."
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulgreg/rsstodolist-node-server.git"
},
"keywords": [
"rsstodolist",
"rss"
],
"author": "Grégory PAUL",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/paulgreg/rsstodolist-node-server/issues"
},
"homepage": "https://github.com/paulgreg/rsstodolist-node-server#readme",
"dependencies": {
"axios": "^1.7.9",
"charset": "^1.0.1",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"debug": "^4.4.0",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"iconv-lite": "^0.6.3",
"jschardet": "^3.1.4",
"mariadb": "^3.4.0",
"morgan": "^1.10.0",
"sequelize": "^6.37.5"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-env": "^7.26.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.?(m)js",
"**/?(*.)(spec|test).?(m)js"
],
"moduleFileExtensions": [
"js",
"json",
"node",
"mjs"
],
"transform": {
"^.+.m?js$": "babel-jest"
}
},
"babel": {
"env": {
"test": {
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
],
"plugins": [
[
"@babel/plugin-transform-modules-commonjs",
{
"spec": true
}
]
]
}
}
},
"optionalDependencies": {
"mysql2": "^3.11.5",
"pg": "^8.13.1"
}
}