This repository was archived by the owner on Nov 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.17 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
{
"name": "docnest",
"version": "0.0.2",
"description": "Doctor Nest",
"author": "Tinker",
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"build": "rimraf -rf ./build && tsc",
"test": "cross-env NODE_ENV=test jest --env=node",
"start": "npm run start:development",
"start:development": "cross-env NODE_ENV=development nodemon",
"start:staging": "cross-env NODE_ENV=staging npm run build && node ./build/main.js",
"start:production": "cross-env NODE_ENV=production npm run build && node ./build/main.js",
"migration:up": "npm run build && typeorm migration:run",
"migration:down": "npm run build && typeorm migration:revert",
"migration:create": "npm run build && typeorm migration:create --name"
},
"dependencies": {
"@nestjs/common": "^5.0.0",
"@nestjs/core": "^5.0.0",
"@nestjs/graphql": "^3.0.0",
"@nestjs/testing": "^5.1.0",
"@nestjs/typeorm": "^5.0.2",
"apollo-server-express": "^1.4.0",
"bcrypt": "^3.0.0",
"chai": "^4.1.2",
"class-transformer": "^0.1.9",
"config": "^2.0.0",
"cross-env": "^5.2.0",
"date-fns": "^1.29.0",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-tools": "^3.0.5",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.10",
"pg": "^7.4.3",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0",
"typeorm": "^0.2.7",
"typescript": "^2.6.2"
},
"devDependencies": {
"@types/bcrypt": "^2.0.0",
"@types/chai": "^4.1.4",
"@types/config": "0.0.34",
"@types/express": "^4.0.39",
"@types/jest": "^23.3.0",
"@types/jsonwebtoken": "^7.2.8",
"@types/lodash": "^4.14.115",
"@types/node": "^9.3.0",
"@types/supertest": "^2.0.6",
"jest": "^23.4.1",
"nodemon": "^1.14.1",
"prettier": "^1.11.1",
"rimraf": "^2.6.2",
"supertest": "^3.1.0",
"ts-jest": "^23.0.1",
"ts-node": "^7.0.0",
"tsconfig-paths": "^3.4.2",
"tslint": "5.3.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".test.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
}
}