-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.18 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
{
"name": "tabify-server",
"version": "1.2.0",
"description": "Tabify's Nest API and TypeORM database.",
"scripts": {
"build": "tsc -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"debug": "nodemon --config nodemon-debug.json",
"start": "nodemon",
"prestart:prod": "rimraf dist && npm run build",
"start:prod": "node -r ./tsconfig-paths-bootstrap.js -r dotenv-safe/config dist/main.js",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"typeorm": "ts-node -r tsconfig-paths/register -r dotenv-safe/config ./node_modules/typeorm/cli.js",
"webpack": "webpack --config webpack.config.js"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"dependencies": {
"@lifeomic/attempt": "^3.0.0",
"@nest-middlewares/morgan": "^6.0.0",
"@nestjs/common": "^6.11.6",
"@nestjs/core": "^6.11.6",
"@nestjs/platform-express": "^6.11.6",
"@sentry/integrations": "^5.12.0",
"@sentry/node": "^5.12.3",
"@types/node-fetch": "^2.1.2",
"ably": "^1.1.24",
"cross-env": "^5.2.0",
"currency.js": "^1.2.2",
"dotenv-safe": "^8.1.0",
"firebase": "^5.8.2",
"firebase-admin": "^7.0.0",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "6",
"rxjs-compat": "6",
"socket.io": "^2.2.0",
"tsconfig-paths": "^3.8.0",
"tslib": "^1.10.0",
"twilio": "^3.39.0",
"typeorm": "^0.2.24",
"typescript": "^3.8.3"
},
"devDependencies": {
"@nestjs/testing": "^6.11.6",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.9",
"@types/node": "^10.7.1",
"@types/socket.io": "^2.1.2",
"@types/supertest": "^2.0.5",
"jest": "^23.6.0",
"nodemon": "^1.18.3",
"prettier": "^1.14.2",
"supertest": "^4.0.2",
"ts-jest": "^23.10.4",
"ts-loader": "^5.3.3",
"ts-node": "^8.6.2",
"tslint": "5.11.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
}
}