-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.48 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
{
"name": "radium",
"version": "0.2.1",
"description": "Radium in TS and TypeORM.",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.14",
"@types/compression": "^1.7.0",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.11",
"@types/faker": "^5.1.5",
"@types/helmet": "0.0.48",
"@types/lodash": "^4.14.167",
"@types/mime": "^2.0.3",
"@types/mocha": "^8.2.0",
"@types/multer": "^1.4.5",
"@types/multer-s3": "^2.7.9",
"@types/node": "^14.14.21",
"@types/passport": "^1.0.5",
"@types/passport-google-oauth20": "^2.0.6",
"@types/sharp": "^0.27.1",
"@types/supertest": "^2.0.10",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"chai": "^4.2.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"faker": "^5.1.0",
"mocha": "^8.2.1",
"supertest": "^6.1.3",
"ts-node": "9.1.1",
"typescript": "4.1.3"
},
"dependencies": {
"aws-sdk": "^2.828.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"class-transformer": "^0.3.2",
"class-validator": "^0.13.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^5.2.3",
"google-auth-library": "^6.1.4",
"helmet": "^4.3.1",
"javascript-time-ago": "^2.3.4",
"jsonwebtoken": "^8.5.1",
"kleur": "^4.1.3",
"knex": "^0.21.15",
"lodash": "^4.17.20",
"mime": "^2.5.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"mysql2": "^2.2.5",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"reflect-metadata": "^0.1.13",
"sharp": "^0.27.0",
"typeorm": "^0.2.30",
"winston": "^3.3.3"
},
"scripts": {
"start": "cd ./build && node src/index.js",
"pm2": "cd ./build && pm2 start src/index.js",
"buildStart": "npm run build && cd ./build && node src/index.js",
"dev": "nodemon --exec ts-node src/index.ts --transpile-only",
"build": "tsc -p ./",
"test": "mocha -r ts-node/register test/**/*.test.ts --transpile-only"
}
}