-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·85 lines (85 loc) · 2.64 KB
/
package.json
File metadata and controls
executable file
·85 lines (85 loc) · 2.64 KB
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
79
80
81
82
83
84
85
{
"name": "server-dapproulette",
"version": "1.0.0",
"description": "DApp Roulettee Server",
"main": "dist/index.js",
"scripts": {
"build": "npm run tsc --declaration --emitDeclarationOnly",
"tsc": "tsc --project tsconfig.compile.json",
"tsc:w": "tsc --project tsconfig.json -w",
"start": "tsnd --inspect --ignore-watch node_modules --respawn --transpile-only -r tsconfig-paths/register src/index.ts",
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
"test": "npm run test:lint && npm run test:coverage",
"test:unit": "cross-env NODE_ENV=test jest",
"test:coverage": "npm run test:unit"
},
"repository": "git@github.com:raphaelvserafim/decentralized-roulette.git",
"author": "Raphael Serafim <raphaelvserafim@gmail.com>",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^8.1.0",
"@tsed/common": "5.67.2",
"@tsed/core": "5.67.2",
"@tsed/di": "5.67.2",
"@tsed/exceptions": "5.67.2",
"@tsed/platform-express": "5.67.2",
"@tsed/swagger": "5.65.3",
"@types/jsonwebtoken": "^9.0.6",
"@types/swagger-schema-official": "2.0.21",
"axios": "^0.21.1",
"bcrypt": "^5.1.1",
"body-parser": "1.19.0",
"compression": "1.7.4",
"concurrently": "5.3.0",
"cookie-parser": "^1.4.6",
"cors": "2.8.5",
"cross-env": "7.0.2",
"dotenv": "^16.3.1",
"email-validator": "^2.0.4",
"ethers": "^6.11.1",
"express": "4.17.1",
"fluent-ffmpeg": "^2.1.2",
"jsonwebtoken": "^9.0.2",
"method-override": "^3.0.0",
"mysql2": "^3.6.5",
"node-uuid": "1.4.8",
"sequelize": "^6.37.1",
"sharp": "^0.31.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typeorm": "^0.3.17",
"typeorm-naming-strategies": "^4.1.0",
"typescript-transform-paths": "^3.4.6",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/chai": "4.2.12",
"@types/chai-as-promised": "7.1.3",
"@types/cors": "2.8.6",
"@types/express": "4.17.7",
"@types/http-proxy": "1.17.2",
"@types/mocha": "8.0.1",
"@types/node": "^14.0.27",
"@types/request-promise": "4.1.45",
"@types/sinon": "9.0.4",
"@types/sinon-chai": "3.2.4",
"@types/supertest": "2.0.10",
"@types/ws": "^8.5.10",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"concurrently": "5.3.0",
"mocha": "8.1.1",
"nodemon": "1.19.4",
"nyc": "15.1.0",
"rimraf": "3.0.0",
"sinon": "9.0.2",
"sinon-chai": "3.5.0",
"supertest": "4.0.2",
"ts-node": "^9.0.0",
"ts-node-dev": "^2.0.0",
"tslint": "6.1.3",
"typeorm-naming-strategies": "^4.1.0",
"typescript": "3.9.4",
"typescript-transform-paths": "^3.4.6"
}
}