-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.74 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
{
"name": "blobfishes",
"version": "0.1.0",
"description": "The ugliest project participating to the DigitalOcean MongoDB Hackathon",
"main": "index.js",
"scripts": {
"start": "dev",
"test": "echo \"Error: no test specified\" && exit 1",
"client-install": "cd client && npm ci",
"serve:server": "npm run build:server && nodemon dist/app.js",
"serve:client": "cd client && npm run dev",
"dev": "concurrently \"npm run serve:server\" \"npm run serve:client\"",
"build": "npm run build:client && npm run build:server",
"build:server": "rm -rf ./dist/ && tsc",
"build:client": "cd client && npm run build",
"serve:prod": "npm run build && NODE_ENV=production nodemon dist/app.js",
"serve:prod:win": "npm run build:client && npm run build:server && $env:NODE_ENV=\"production\" nodemon dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmacario/blobfishes.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/gmacario/blobfishes/issues"
},
"homepage": "https://github.com/gmacario/blobfishes#readme",
"dependencies": {
"@koa/cors": "^3.1.0",
"ajv": "^7.2.4",
"ajv-formats": "^1.6.1",
"bcrypt": "^5.0.1",
"dotenv": "^8.6.0",
"http-errors": "^1.8.0",
"inversify": "^5.1.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"koa-jwt": "^4.0.1",
"koa-logger": "^3.2.1",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"koa-swagger-decorator": "^1.7.5",
"migrate-mongo": "^8.2.2",
"mongodb": "^3.6.10",
"reflect-metadata": "^0.1.13",
"typescript-json-schema": "^0.49.0",
"ugly-frontend": "file:client",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
},
"devDependencies": {
"@types/bcrypt": "^3.0.1",
"@types/http-errors": "^1.8.1",
"@types/json2csv": "^5.0.3",
"@types/jsonwebtoken": "^8.5.4",
"@types/koa": "^2.13.4",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@types/koa__cors": "^3.0.3",
"@types/migrate-mongo": "^8.1.1",
"@types/mongodb": "^3.6.20",
"@types/node": "^14.17.5",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"color-string": ">=1.5.5",
"concurrently": "^6.2.0",
"glob-parent": ">=5.1.2",
"nodemon": "^2.0.10",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
}
}