-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.41 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": "grow-up",
"version": "1.0.0",
"description": "Grow up - manage your day with your daily dashboard",
"author": {
"name": "Mateusz Szczeciński"
},
"engines": {
"node": "10.15.3"
},
"scripts": {
"start": "node dist/main.js",
"webpack": "webpack --config webpack.config.js",
"prestart": "tsc -p tsconfig.build.json",
"heroku-postbuild": "tsc -p tsconfig.build.json",
"start:prod": "node dist/main.js",
"start:webpack": "node distWP/server",
"test": "jest --config=jest.config.js",
"test:watch": "jest --watch --config=jest.config.json",
"test:coverage": "jest --config=jest.config.json --coverage --coverageDirectory=coverage",
"e2e": "jest --config=e2e/jest-e2e.json --forceExit",
"e2e:watch": "jest --watch --config=e2e/jest-e2e.json",
"generate": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@nestjs/cli": "^6.5.0",
"@nestjs/common": "^6.0.4",
"@nestjs/core": "^6.0.4",
"@nestjs/graphql": "^6.0.3",
"@nestjs/jwt": "^6.0.0",
"@nestjs/passport": "^6.0.0",
"@nestjs/platform-express": "^6.0.4",
"@nestjs/typeorm": "^6.0.0",
"@types/mongodb": "^3.1.14",
"apollo-server": "^2.2.3",
"apollo-server-express": "^2.4.8",
"class-transformer": "^0.2.0",
"class-validator": "^0.9.1",
"date-fns": "^1.30.1",
"date-fns-timezone": "^0.1.4",
"express-jwt": "^5.3.1",
"g": "^2.0.1",
"google-auth-library": "^3.1.2",
"graphql": "^14.2.1",
"graphql-iso-date": "^3.6.1",
"graphql-parse-resolve-info": "^4.1.0",
"graphql-subscriptions": "^1.1.0",
"jwks-rsa": "^1.5.1",
"lodash": "^4.17.11",
"mongodb": "^3.2.2",
"nestjs-config": "^1.3.21",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"reflect-metadata": "0.1.12",
"rxjs": "6.3.1",
"typeorm": "^0.2.16",
"typescript": "^3.4.1"
},
"devDependencies": {
"@graphql-codegen/typescript": "1.0.3",
"@graphql-codegen/typescript-apollo-angular": "1.0.3",
"@graphql-codegen/typescript-operations": "1.0.3",
"@nestjs/testing": "^6.0.5",
"@types/graphql-iso-date": "^3.3.1",
"@types/jest": "^23.3.13",
"@types/node": "10.9.4",
"jest": "^24.0.0",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.1",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2"
}
}