-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.86 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.86 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@wix/quix-service",
"version": "1.0.32",
"description": "",
"author": "",
"license": "MIT",
"scripts": {
"build:ts": "tsc -b tsconfig.build.json",
"build": "npm run build:ts && npm run update-statics",
"build:start": "npm run build && npm start",
"start": "DB_HOST=localhost ts-node --files scripts/start.ts",
"update-statics": "ts-node scripts/update-statics.ts",
"start:dev": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json",
"start:prod": "node index.js",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint:fix": "tslint -p tsconfig.json -c tslint.json --fix",
"test": "jest",
"test:ci": "npm run test && npm run test:mysql && npm run test:e2e",
"test:mysql": "DB_TYPE=mysql jest --runInBand",
"test:build:mysql": "npm run build && npm run test:mysql",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand",
"test:debug:mysql": "DB_TYPE=mysql node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "npm run test:e2e:sqlite && npm run test:e2e:mysql",
"test:e2e:sqlite": "jest --runInBand --config ./test/jest-e2e.js",
"test:e2e:mysql": "DB_TYPE=mysql jest --runInBand --config ./test/jest-e2e.js",
"fnm": "fnm exec which node | xargs -I % ln -sf % ./.fnm-node && chmod +x ./.fnm-node",
"link:shared": "cd ../shared && npm link && cd ../service && npm link @wix/quix-shared"
},
"dependencies": {
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^9.0.5",
"@nestjs/jwt": "^7.0.0",
"@nestjs/platform-express": "^7.0.0",
"@nestjs/platform-ws": "^7.0.0",
"@nestjs/typeorm": "^7.0.0",
"@nestjs/websockets": "^7.0.0",
"@types/node-fetch": "^2.5.0",
"@types/ws": "^6.0.4",
"@wix/quix-shared": "^1.0.15",
"axios": "^0.21.0",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.4",
"dotenv": "^7.0.0",
"fp-ts": "^2.0.1",
"google-auth-library": "^6.1.6",
"http-proxy-middleware": "^0.19.1",
"lodash": "^4.17.19",
"mysql": "^2.16.0",
"node-fetch": "^2.6.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.2",
"rxjs": "^6.3.3",
"tapable": "^1.1.1",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.8.0",
"typeorm": "0.2.45",
"typescript": "^4.0.0",
"uuid": "^3.3.2",
"velocity": "^0.7.2",
"ws": "^7.2.1"
},
"devDependencies": {
"@nestjs/testing": "^7.0.0",
"@types/chance": "^1.0.4",
"@types/cookie": "^0.4.0",
"@types/cookie-parser": "^1.4.1",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.0",
"@types/http-proxy-middleware": "^0.19.2",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.123",
"@types/mysql": "^2.15.6",
"@types/nock": "^9.3.1",
"@types/node": "^12.0.0",
"@types/shelljs": "^0.8.3",
"@types/supertest": "^2.0.7",
"@types/tapable": "^1.0.4",
"@types/uuid": "^3.4.4",
"chance": "^1.0.18",
"jest": "^26.0.0",
"nock": "^10.0.6",
"nodemon": "^1.18.9",
"prettier": "^2.0.0",
"shelljs": "^0.8.3",
"sql.js": "^1.0.0",
"supertest": "^6.0.0",
"ts-jest": "^26.0.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"/node_modules/",
"/quix-frontend\\shared/"
],
"globals": {
"ts-jest": {
"tsconfig": {
"target": "esnext"
}
}
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}