-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
110 lines (110 loc) · 3.1 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
{
"name": "lt-starter",
"version": "0.1.0",
"description": "LT starter project",
"keywords": [
"blockchain",
"anchor"
],
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"build": "rm -rf dist && tsc && npm run copy-assets",
"codecov": "codecov",
"copy-assets": "cp -r src/assets dist/assets",
"build:frontend": "cd frontend && npm run build:prod",
"install:frontend": "cd frontend && npm install",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"start:prod": "node dist/main.js",
"start:hmr": "node dist/server",
"prestart:prod": "npm run build",
"test": "jest",
"test:cov": "jest --detectOpenHandles --forceExit --coverage",
"test:e2e": "jest --detectOpenHandles --forceExit --runInBand --config ./test/jest-e2e.json",
"test:all": "npm run test:e2e && npm run test:cov",
"webpack": "webpack --config webpack.config.js"
},
"authors": [],
"license": "ISC",
"dependencies": {
"@nestjs/common": "^6.8.3",
"@nestjs/core": "^6.8.3",
"@nestjs/platform-express": "^6.8.3",
"@nestjs/swagger": "^3.1.0",
"@typegoose/typegoose": "^6.0.4",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"boolean": "^3.0.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.9.1",
"clone-buffer": "^1.0.0",
"convict": "^4.3.2",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"delay": "^3.1.0",
"express": "^4.16.4",
"hashids": "^2.0.0",
"helmet": "^3.15.0",
"js-sha256": "^0.9.0",
"moment": "^2.22.2",
"mongoose": "^5.4.19",
"nanoid": "^2.1.8",
"nodemailer": "^6.4.2",
"qrcode": "^1.4.4",
"recaptcha2": "^1.3.3",
"rxjs": "^6.3.2",
"speakeasy": "^2.0.0",
"swagger-ui-express": "^4.0.7",
"tweetnacl": "^1.0.1",
"tweetnacl-util": "^0.15.0",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.3.2",
"winston-transport-rollbar": "^2.4.0"
},
"devDependencies": {
"@nestjs/testing": "^6.8.3",
"@types/axios": "^0.14.0",
"@types/convict": "^4.2.0",
"@types/delay": "^2.0.1",
"@types/express": "^4.0.39",
"@types/hashids": "^1.0.30",
"@types/jest": "^24.0.0",
"@types/mongoose": "^5.3.1",
"@types/node": "^9.6.51",
"@types/qrcode": "^1.3.4",
"@types/recaptcha2": "^1.3.0",
"@types/speakeasy": "^2.0.5",
"@types/supertest": "^2.0.6",
"@types/winston": "^2.4.4",
"codecov": "^3.6.1",
"jest": "^24.5.0",
"node-mocks-http": "^1.7.5",
"nodemon": "^1.18.4",
"prettier": "^1.14.2",
"supertest": "^3.4.2",
"ts-jest": "^24.0.0",
"ts-loader": "^4.5.0",
"ts-mockito": "^2.5.0",
"ts-node": "^6.2.0",
"tsconfig-paths": "^3.6.0",
"tslint": "5.3.2",
"typescript": "^3.6.2",
"webpack": "^4.18.0",
"webpack-cli": "^2.0.13",
"webpack-node-externals": "^1.6.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage/",
"testEnvironment": "node"
}
}