-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "logos-api",
"version": "0.4.1",
"description": "RESTful API for searching and retrieving logos from various user-contributed sources",
"main": "app.js",
"repository": {
"url": "https://github.com/soulchild/logos-api",
"type": "git"
},
"scripts": {
"start": "node bin/logos-api",
"dev": "nodemon bin/logos-api | pino-pretty -c -t",
"update-logos": "./bin/update-logos",
"lint": "eslint .",
"test": "mocha --reporter spec",
"prepare": "husky install"
},
"author": "Tobi Kremer <[email protected]>",
"license": "ISC",
"dependencies": {
"express": "^4.21.0",
"pino": "^8.21.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"nodemon": "^3.1.7",
"pino-pretty": "^11.2.2",
"prettier": "^3.3.3",
"supertest": "^7.0.0"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}