-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
{
"name": "avatar",
"version": "1.6.1",
"description": "Self-hosted service for creating random avatars",
"main": "src/app.js",
"private": true,
"scripts": {
"dev": "nodemon bin/www",
"generate:docs": "apidoc -i src -o docs",
"start": "NODE_ENV=prod node bin/www"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frncsdrk/avatar.git"
},
"keywords": [
"avatar"
],
"author": "frncsdrk",
"license": "MIT",
"bugs": {
"url": "https://github.com/frncsdrk/avatar/issues"
},
"homepage": "https://github.com/frncsdrk/avatar#readme",
"dependencies": {
"canvas": "^2.11.2",
"config": "^3.3.12",
"cors": "^2.8.5",
"express": "^4.21.2",
"js-yaml": "^4.1.0",
"response-time": "^2.3.3",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^5.1.1",
"nodemon": "^3.1.9",
"prettier": "^2.8.8"
},
"engines": {
"node": ">= 18.0.0 <21.0.0"
},
"volta": {
"node": "20.14.0"
}
}