-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.51 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": "locly-ddd",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "APP_ENV=prod nest start",
"start:webhook": "APP_ENV=dev nest start & stripe listen --forward-to localhost:3000/stripe/webhook",
"start:dev": "APP_ENV=dev nest start --watch",
"start:dev:webhook": "APP_ENV=dev nest start --watch & stripe listen --forward-to localhost:3000/stripe/webhook",
"start:debug": "APP_ENV=dev nest start --debug --watch",
"start:debug:webhook": "APP_ENV=dev nest start --debug --watch & stripe listen --forward-to localhost:3000/stripe/webhook",
"start:prod": "APP_ENV=prod node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "APP_ENV=dev jest --runInBand --forceExit",
"test:watch": "APP_ENV=dev jest --watch --forceExit",
"test:cov": "APP_ENV=dev jest --coverage --forceExit",
"test:debug": "APP_ENV=dev node --inspect-brk node_modules/.bin/jest --runInBand"
},
"dependencies": {
"@golevelup/nestjs-stripe": "^0.1.0",
"@golevelup/nestjs-webhooks": "^0.2.6",
"@nestjs/common": "^8.2.3",
"@nestjs/config": "^1.1.5",
"@nestjs/core": "^8.2.3",
"@nestjs/event-emitter": "^1.0.0",
"@nestjs/platform-express": "^8.2.3",
"class-transformer": "^0.3.2",
"class-validator": "^0.13.2",
"cookie-parser": "^1.4.5",
"i18n-iso-countries": "^6.7.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.3",
"ms": "^2.1.3",
"multer-gridfs-storage": "^4.2.0",
"nest-mongodb": "^6.2.0",
"nestjs-session": "^2.0.0",
"nodemailer": "^6.6.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.4.0",
"stripe": "^8.137.0",
"ts-jest": "^27.0.7",
"uuid": "^8.3.2",
"uuid-mongodb": "^2.4.1"
},
"devDependencies": {
"@nestjs/cli": "^8.1.5",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^8.2.3",
"@types/cookie-parser": "^1.4.2",
"@types/expect-puppeteer": "^4.4.5",
"@types/express": "^4.17.3",
"@types/jest": "^27.0.3",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongodb": "^3.6.3",
"@types/ms": "^0.7.31",
"@types/multer": "^1.4.5",
"@types/multer-gridfs-storage": "^4.0.4",
"@types/node": "^13.9.1",
"@types/nodemailer": "^6.4.1",
"@types/puppeteer": "^5.4.3",
"@types/rx": "^4.1.2",
"@types/stripe-v3": "^3.1.23",
"@types/supertest": "^2.0.8",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"axios": "^0.21.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"fuse.js": "^6.4.6",
"jest": "^27.3.1",
"jest-puppeteer": "^5.0.3",
"p-limit": "^1.3.0",
"prettier": "^1.19.1",
"puppeteer": "^9.0.0",
"start-server-webpack-plugin": "^2.2.5",
"supertest": "^4.0.2",
"ts-loader": "^6.2.1",
"ts-node": "9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.5.2",
"webpack-node-externals": "^2.5.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"preset": "jest-puppeteer"
},
"engines": {
"node": "14.x"
}
}