-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
{
"name": "graphql-boilerplate",
"version": "1.0.0",
"description": "A simple boilerplate for graphql with authentication",
"main": "index.js",
"dependencies": {
"@types/dotenv": "^4.0.0",
"@types/jsonwebtoken": "^7.2.0",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"graphql": "^0.9.6",
"graphql-server-express": "^0.7.2",
"graphql-tools": "^0.11.0",
"jsonwebtoken": "^7.4.1",
"sqlite3": "^3.1.8",
"typeorm": "^0.0.11"
},
"devDependencies": {
"@types/bcrypt": "^1.0.0",
"@types/body-parser": "^0.0.33",
"@types/chai": "^3.4.34",
"@types/chalk": "^0.4.31",
"@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/minimist": "^1.2.0",
"@types/mocha": "^2.2.36",
"@types/node": "^6.0.55",
"@types/node-uuid": "^0.0.28",
"@types/passport-local": "^1.0.29",
"@types/shelljs": "^0.3.33",
"@types/sinon": "^1.16.34",
"@types/supertest": "^2.0.0",
"@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"
},
"scripts": {
"dev": "cross-env NODE_ENV=dev 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'"
},
"author": "Marco Tschannett",
"license": "ISC"
}