This repository has been archived by the owner on Jul 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
110 lines (110 loc) · 3.19 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "graphql-typeorm-passport-boilerplate",
"version": "0.0.0",
"description": "demo for graphql-typeorm with passport",
"main": "build/index.js",
"scripts": {
"dev": "cross-env NODE_ENV=dev PORT=8090 nodemon -e ts --exec \"ts-node src/index.ts\"",
"start": "nodemon build/index.js",
"build": "tsc src/index.ts",
"cover": "nyc npm test",
"test:coverage": "export NODE_ENV=test npm run cover && nyc check-coverage --lines 80 --functions 80 --branches 80",
"test": "NODE_ENV=test mocha --compilers ts:ts-node/register src/**/*.test.ts",
"test:watch": " NODE_ENV=test mocha --compilers ts:ts-node/register --watch --watch-extensions tsx,ts --recursive './**/*.test.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikizmet/pre-calculated-rest-api.git"
},
"author": "Eric Wooley <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ikizmet/pre-calculated-rest-api/issues"
},
"homepage": "https://github.com/ikizmet/pre-calculated-rest-api#readme",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chalk": "^0.4.31",
"@types/minimist": "^1.2.0",
"@types/mocha": "^2.2.36",
"@types/node": "^6.0.55",
"@types/shelljs": "^0.3.33",
"@types/sinon": "^1.16.34",
"@types/swagger-jsdoc": "0.0.1",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"cross-env": "^3.1.3",
"minimist": "^1.2.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"nyc": "^10.0.0",
"shelljs": "^0.7.5",
"sinon": "^1.17.7",
"swagger-jsdoc": "^1.8.4",
"ts-node": "^2.0.0",
"typescript": "^2.1.5"
},
"dependencies": {
"@types/bcrypt": "^1.0.0",
"@types/body-parser": "^0.0.33",
"@types/connect-flash": "^0.0.31",
"@types/connect-redis": "^0.0.5",
"@types/cors": "^2.8.0",
"@types/express": "^4.0.35",
"@types/express-graphql": "^0.0.33",
"@types/express-session": "^0.0.32",
"@types/graphql": "^0.8.6",
"@types/lodash": "^4.14.50",
"@types/node-uuid": "^0.0.28",
"@types/passport": "^0.3.2",
"@types/passport-local": "^1.0.29",
"@types/supertest": "^2.0.0",
"bcrypt": "^1.0.2",
"body-parser": "^1.16.0",
"connect-flash": "^0.1.1",
"connect-redis": "^3.2.0",
"cors": "^2.8.1",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-graphql": "^0.6.1",
"express-session": "^1.14.2",
"graphql": "^0.8.2",
"graphql-server-express": "^0.5.2",
"graphql-tools": "^0.9.2",
"lodash": "^4.17.4",
"node-uuid": "^1.4.7",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.9",
"sqlite3": "^3.1.8",
"supertest": "^2.0.1",
"ts-node": "^2.0.0",
"typeorm": "0.0.8-alpha.2",
"typescript": "^2.1.5"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts",
"src/index.ts",
"src/routes/index.ts",
"src/utils/generateModels/fixtures/**/*",
"src/utils/generateModels/generateModels.ts",
"src/scripts/**/*"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
],
"all": true
}
}