forked from awesome-graphql-space/server-nestjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.66 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
{
"name": "graphql-boilerplate-server",
"version": "0.0.1",
"description": "graphql boilerplate server",
"author": "Rex Raphael",
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"prestart:prod": "rm -rf dist && 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",
"migration:generate": "ts-node ./node_modules/typeorm/cli.js migration:generate",
"migration:run": "ts-node ./node_modules/typeorm/cli.js migration:run",
"migration:revert": "ts-node ./node_modules/typeorm/cli.js migration:revert",
"cache:clear": "ts-node ./node_modules/typeorm/cli.js cache:clear",
"schema:sync": "ts-node ./node_modules/typeorm/cli.js schema:sync"
},
"dependencies": {
"@nestjs/common": "^5.1.0",
"@nestjs/core": "^5.1.0",
"@nestjs/graphql": "^3.0.0",
"@nestjs/passport": "^1.1.0",
"@nestjs/typeorm": "^5.1.0",
"apollo-server-express": "^1.4.0",
"bcryptjs": "^2.4.3",
"class-validator": "^0.9.1",
"dotenv": "^6.0.0",
"express-graphql": "^0.6.12",
"fastify-formbody": "^2.0.0",
"graphql": "^0.13.2",
"graphql-import": "^0.6.0",
"graphql-playground-middleware-express": "^1.7.2",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^3.1.1",
"jsonwebtoken": "^8.3.0",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.10",
"mysql": "^2.16.0",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^4.0.0",
"prisma-binding": "^2.1.4",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.2.2",
"subscriptions-transport-ws": "^0.9.14",
"typeorm": "^0.2.7",
"typescript": "^2.6.2"
},
"devDependencies": {
"@nestjs/testing": "^5.0.0",
"@types/express": "^4.0.39",
"@types/graphql": "^0.13.4",
"@types/jest": "^21.1.8",
"@types/node": "^9.6.27",
"@types/supertest": "^2.0.4",
"jest": "^21.2.1",
"nodemon": "^1.14.1",
"prettier": "^1.14.2",
"supertest": "^3.0.0",
"ts-jest": "^21.2.4",
"ts-loader": "^4.1.0",
"ts-node": "^4.1.0",
"tsconfig-paths": "^3.1.1",
"tslint": "5.3.2",
"webpack": "^4.2.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"
}
}