-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.08 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
{
"name": "archivio-digitale-server",
"version": "0.0.8",
"description": "Archivio Digitale",
"main": "server/server.js",
"scripts": {
"start": "NODE_ENV=production node server/server.js",
"populate": "node server/config/seed/seed.js",
"config": "node server/config/install/install.js",
"init": "npm i && npm run config",
"buckets": "node server/config/minio/minio",
"lint": "eslint --fix ./server/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ITISEnricoFermi/archivio-digitale-server.git"
},
"author": {
"name": "Riccardo Sangiorgio",
"email": "[email protected]",
"url": "https://riccardosangiorgio.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ITISEnricoFermi/archivio-digitale-server/issues"
},
"homepage": "https://github.com/ITISEnricoFermi/archivio-digitale-server#readme",
"dependencies": {
"@webauthn/server": "^0.1.3",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"compression": "^1.7.4",
"connect-history-api-fallback": "^1.6.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.13",
"minio": "^7.0.15",
"mmmagic": "^0.5.3",
"mongoose": "^5.9.7",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"sharp": "^0.23.4",
"socket.io": "^2.3.0",
"tee-1": "^0.2.0",
"through": "^2.3.8",
"validator": "^12.2.0",
"xregexp": "^4.3.0"
},
"devDependencies": {
"chalk": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"figlet": "^1.3.0",
"ora": "^4.0.3",
"readline-sync": "^1.4.10",
"shelljs": "^0.8.3"
},
"engines": {
"node": ">=10.9.0"
}
}