-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.32 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
{
"name": "deshimemes-backend",
"version": "0.0.0",
"description": "Deshi memes api",
"author": "Sohan Chowdhury <[email protected]> (http://sohanchy.com)",
"license": "MIT",
"scripts": {
"gcp-build": "rm -rf /dist && node ./util/build.js",
"build": "node ./util/build.js",
"lint": "tslint --project \"tsconfig.json\"",
"start": "node -r module-alias/register ./dist",
"start:nobuild": "node -r module-alias/register ./dist",
"start:dev": "nodemon --config nodemon.json",
"test": "nodemon --config nodemon.test.json",
"migrate:make": "knex --knexfile env/knexfile.ts migrate:make -x ts",
"migrate:latest": "knex --knexfile env/knexfile.ts migrate:latest",
"migrate:rollback": "knex --knexfile env/knexfile.ts migrate:rollback"
},
"_moduleAliases": {
"@models": "dist/db/models",
"@controllers": "dist/controllers",
"@entities": "dist/entities",
"@shared": "dist/shared",
"@server": "dist/Server"
},
"dependencies": {
"@google-cloud/storage": "^4.7.0",
"@overgear/yup-ast": "^1.0.3",
"@types/lodash": "^4.14.149",
"bcrypt": "^4.0.1",
"cache-manager": "^3.2.1",
"command-line-args": "^5.1.1",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-http-proxy": "^1.6.0",
"fs-extra": "^9.0.0",
"helmet": "^3.22.0",
"http-status-codes": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.14",
"lodash": "^4.17.15",
"mmmagic": "^0.5.3",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"objection": "^2.1.3",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^8.0.2",
"winston": "^3.2.1",
"yup": "^0.28.3"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.6",
"@types/find": "^0.2.1",
"@types/helmet": "0.0.45",
"@types/jasmine": "^3.5.10",
"@types/jsonfile": "^5.0.0",
"@types/morgan": "^1.9.0",
"@types/node": "^13.11.1",
"@types/supertest": "^2.0.8",
"find": "^0.3.0",
"jasmine": "^3.5.0",
"jsonfile": "^6.0.1",
"nodemon": "^2.0.3",
"supertest": "^4.0.2",
"ts-node": "^8.8.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
}
}