-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.29 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
75
76
77
78
{
"name": "fbm-server",
"version": "3.0.0",
"description": "Fantabasket Manager",
"author": "Simone De Gennaro",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/deggesim/fbm-server.git"
},
"bugs": {
"url": "https://github.com/deggesim/fbm-server/issues"
},
"homepage": "https://github.com/deggesim/fbm-server#readme",
"engines": {
"node": "20.x",
"npm": "10.x"
},
"main": "index.js",
"scripts": {
"build": "tsc --rootDir ./src/",
"start": "ts-node src/index.ts",
"local": "tsc --rootDir ./src/ & node dist/index.js",
"start:dev": "env-cmd -f ./config/dev.env nodemon --config nodemon.json src/index.ts",
"start:prod": "env-cmd -f ./config/prod.env nodemon --config nodemon.json src/index.ts",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"postinstall": "npm run build",
"package": "npm i --package-lock-only"
},
"dependencies": {
"@koa/cors": "^3.4.3",
"@koa/multer": "^2.0.2",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"csv-parse": "^4.16.3",
"jsonwebtoken": "^8.5.1",
"koa": "^2.15.0",
"koa-bodyparser": "^4.4.1",
"koa-jwt": "^3.6.0",
"koa-logger": "^3.2.1",
"koa-router": "^7.4.0",
"lodash": "^4.17.21",
"mongodb": "^6.3.0",
"mongoose": "^8.1.3",
"mongoose-aggregate-paginate-v2": "^1.0.7",
"mongoose-paginate-v2": "^1.8.0",
"multer": "^1.4.4",
"node-fetch": "^2.7.0",
"validator": "^12.2.0",
"web-push": "^3.6.7"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/csv-parse": "^1.2.2",
"@types/jsdom": "^16.2.15",
"@types/jsonwebtoken": "^8.5.9",
"@types/koa": "^2.14.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-jwt": "^3.3.0",
"@types/koa-logger": "^3.1.5",
"@types/koa-router": "^7.4.8",
"@types/lodash": "^4.14.202",
"@types/mongodb": "^4.0.7",
"@types/mongoose": "^5.11.97",
"@types/mongoose-aggregate-paginate-v2": "^1.0.12",
"@types/multer": "^1.4.11",
"@types/node": "^12.20.55",
"@types/node-fetch": "^2.6.11",
"@types/validator": "^12.0.1",
"@types/web-push": "^3.6.3",
"env-cmd": "^10.1.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^4.9.5"
}
}