-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.02 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.02 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
{
"name": "our-shopping-list",
"homepage": "https://github.com/nanawel/our-shopping-list",
"maintainers": [
{
"name": "Anaël Ollier",
"email": "nanawel@gmail.com",
"url": "https://lanterne-rouge.info"
}
],
"description": "Simple shared shopping list running on Node",
"license": "AGPL-3.0-or-later",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cli": "./cli.js"
},
"keywords": [
"shared",
"shopping-list",
"list",
"pwa",
"todo-list"
],
"dependencies": {
"compression": "^1.8",
"dotenv": "*",
"express": "^5.1",
"express-urlrewrite": "^2.0",
"http-proxy-middleware": "^3.0",
"mongodb": "^6.17",
"mongoose": "^8.16",
"mongoose-unique-validator": "^5.0",
"nanobus": "^4.5.0",
"nodemon": "^3.1.9",
"sha1": "^1.1.1",
"slugify": "^1.6",
"socket.io": "^4.8",
"uuid": "^11.0.5",
"yargs": "^18.0"
},
"nodemonConfig": {
"ignore": [
"**/client/**"
]
}
}