-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
47 lines (47 loc) · 1.34 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": "delta",
"version": "1.0.0",
"description": "A superfast feature-rich self-hosted File Uploader and URL shortner",
"repository": {
"url": "https://github.com/fosslife/delta"
},
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "node build.js",
"dev": "cross-env NODE_ENV=development nodemon index.js --ignore 'storage'",
"start": "cross-env NODE_ENV=production REDIS_HOST=localhost node index.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"autoprefixer": "^10.2.4",
"basic-auth": "^2.0.1",
"cron": "^1.6.0",
"cross-env": "^7.0.3",
"date-fns": "^2.18.0",
"express": "^4.16.4",
"express-handlebars": "^5.2.1",
"helmet": "^4.4.1",
"ioredis": "^4.23.0",
"multer": "^1.4.1",
"nanoid": "^3.1.20",
"valid-url": "^1.0.9",
"winston": "^3.2.1"
},
"devDependencies": {
"axios": "^0.21.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^5.1.3",
"lorem-ipsum": "^2.0.3",
"nodemon": "^2.0.7",
"ora": "^5.3.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
}
}