-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
112 lines (112 loc) · 4.12 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@energyweb/origin-backend",
"version": "11.2.1",
"description": "API for managing users, certificate, requests and devices in the Origin project",
"main": "dist/js/src/index.js",
"scripts": {
"lint": "eslint \"src/**/*{.ts,.tsx}\" --quiet",
"lint-fix": "eslint \"src/**/*{.ts,.tsx}\" --fix",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"prebuild": "shx rm -rf dist",
"build": "yarn build:ts",
"build:ts": "tsc --project tsconfig.json && cp migrations/initial.sql dist/js/migrations/",
"prettier": "prettier --write --config-precedence file-override './src/**/*'",
"test:e2e": "yarn typeorm:run && mocha -r ts-node/register test/*.e2e-spec.ts --timeout 60000 --exit",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config ormconfig-dev.ts",
"typeorm:migrate": "yarn typeorm migration:generate -- -n",
"typeorm:run": "yarn typeorm migration:run",
"typeorm:drop": "yarn typeorm schema:drop",
"typeorm:dropAndMigrate": "yarn typeorm:drop && yarn typeorm:run",
"clean": "shx rm -rf dist uploads",
"precommit": "lint-staged"
},
"bin": {
"origin-backend": "./bin/origin-backend",
"origin-backend-migrate": "./bin/origin-backend-migrate"
},
"homepage": "https://github.com/energywebfoundation/origin/tree/master/packages/origin-backend#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/energywebfoundation/origin.git"
},
"bugs": {
"url": "https://github.com/energywebfoundation/origin/issues"
},
"author": "EnergyWeb DevHub GmbH; Joseph Bagaric, [email protected]; Piotr Kosinski, [email protected]",
"license": "MIT",
"dependencies": {
"@energyweb/origin-backend-core": "8.2.1",
"@energyweb/origin-backend-utils": "1.8.1",
"@energyweb/utils-general": "11.2.1",
"@nestjs/common": "8.1.1",
"@nestjs/config": "1.0.2",
"@nestjs/core": "8.1.1",
"@nestjs/cqrs": "8.0.0",
"@nestjs/jwt": "8.0.0",
"@nestjs/passport": "8.0.1",
"@nestjs/platform-express": "8.1.1",
"@nestjs/swagger": "5.1.4",
"@nestjs/typeorm": "8.0.2",
"bcryptjs": "2.4.3",
"body-parser": "1.19.1",
"class-transformer": "0.3.1",
"class-validator": "0.13.2",
"dotenv": "10.0.0",
"ethers": "5.3.1",
"express": "4.17.2",
"moment": "2.29.2",
"multer": "1.4.4",
"passport": "0.5.2",
"passport-jwt": "4.0.0",
"passport-local": "1.0.0",
"reflect-metadata": "0.1.13",
"rxjs": "7.4.0",
"typeorm": "0.2.41",
"uuid": "8.3.2"
},
"devDependencies": {
"@nestjs/cli": "8.1.4",
"@nestjs/schematics": "8.0.4",
"@nestjs/testing": "8.1.1",
"@types/bcryptjs": "2.4.2",
"@types/body-parser": "1.19.2",
"@types/chai": "4.3.0",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/jest": "27.4.0",
"@types/jsonwebtoken": "8.5.8",
"@types/mocha": "9.0.0",
"@types/multer": "1.4.7",
"@types/node": "14.18.10",
"@types/nodemailer": "6.4.4",
"@types/passport": "1.0.7",
"@types/passport-jwt": "3.0.6",
"@types/passport-local": "1.0.34",
"@types/superagent": "4.1.15",
"@types/supertest": "2.0.11",
"@types/uuid": "8.3.4",
"@types/websocket": "1.0.5",
"@types/ws": "8.2.2",
"chai": "4.3.4",
"jest": "27.4.5",
"mocha": "9.1.3",
"nodemailer": "6.7.2",
"polly-js": "1.8.3",
"shx": "0.3.3",
"supertest": "6.1.6",
"ts-node": "9.1.1",
"typescript": "4.5.4"
},
"files": [
"dist",
"bin"
],
"gitHead": "54beaf7fe6686810de74ca290daf99cbde510f9d",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}