This repository has been archived by the owner on Jun 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.67 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
{
"name": "camerakit-api",
"version": "1.0.0",
"description": "CameraKit's core API project supporting our website, dashboard, libraries",
"author": "Alterac, Inc.",
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"migrations:generate": "node_modules/ts-node/dist/bin.js node_modules/.bin/typeorm migration:generate",
"migrations:run": "node_modules/ts-node/dist/bin.js node_modules/.bin/typeorm migration:run",
"migrations:revert": "node_modules/ts-node/dist/bin.js node_modules/.bin/typeorm migration:revert",
"start:dev": "nodemon",
"prestart:prod": "tsc",
"start:prod": "node dist/main.js",
"start:hmr": "node dist/server",
"test": "jest",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
"@nestjs/common": "^5.3.11",
"@nestjs/core": "^5.3.11",
"@nestjs/graphql": "^5.4.0",
"@nestjs/passport": "^5.1.0",
"@nestjs/typeorm": "^5.1.0",
"@types/bcrypt": "^3.0.0",
"@types/bcrypt-nodejs": "^0.0.30",
"@types/email-templates": "^3.5.0",
"@types/graphql": "^14.0.2",
"@types/nodemailer": "^4.6.5",
"@types/stripe": "^6.0.1",
"apollo-server-express": "^2.0.3",
"aws-sdk": "^2.333.0",
"bcrypt": "^3.0.1",
"cors": "^2.8.4",
"dotenv": "^6.1.0",
"email-templates": "^5.0.1",
"express": "^4.16.4",
"express-sslify": "^1.2.0",
"graphql": "^14.0.2",
"helmet": "^3.14.0",
"joi": "^13.7.0",
"jsonwebtoken": "^8.3.0",
"nodemailer": "^4.6.8",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"path": "^0.12.7",
"pg": "^7.5.0",
"pug": "^2.0.3",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.3.3",
"stripe": "^6.12.1",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.6.0",
"typeorm": "^0.2.7",
"typescript": "^3.1.3"
},
"devDependencies": {
"@nestjs/testing": "^5.3.11",
"@types/express": "^4.0.39",
"@types/jest": "^23.3.5",
"@types/node": "^10.11.7",
"@types/supertest": "^2.0.6",
"jest": "^23.6.0",
"nodemon": "^1.18.4",
"prettier": "^1.14.3",
"supertest": "^3.3.0",
"ts-jest": "^23.10.4",
"ts-loader": "^5.2.1",
"tslint": "5.11.0",
"tslint-config-airbnb": "^5.11.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.6.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
}
}