-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3.38 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
{
"name": "mazos-api-ts",
"description": "Plantilla Typescript + Apollo Server + GraphQL",
"version": "0.0.1",
"main": "webpack/common.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "webpack --config webpack.$NODE_ENV.js",
"prepare": "husky install",
"start": "nodemon --require dotenv/config dist/server",
"ts-compile-check": "tsc -p tsconfig.json --noEmit",
"lint:js": "prettier-standard --format '{src,tests}/**/*.js'",
"lint:ts": "prettier-standard --format '{src,test}/**/*.ts'",
"lint": "npm run lint:js && npm run lint:ts",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' nyc mocha -r ts-node/register './src/**/*.test.ts' --exit --no-timeouts"
},
"keywords": [
"graphql",
"typescript",
"apollo",
"sequelize"
],
"bugs": {
"url": "https://github.com/SeGonzalezR/ts-graphql-apollo/issues"
},
"author": "Sebastián González Riffo <[email protected]>",
"homepage": "https://github.com/SeGonzalezR/ts-graphql-apollo#readme",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@eclass/eslint-config": "2.0.1",
"@eclass/eslint-config-typescript": "1.0.3",
"@types/chai": "4.2.18",
"@types/graphql-depth-limit": "1.1.2",
"@types/ioredis": "4.26.4",
"@types/mocha": "8.2.2",
"@types/morgan": "1.9.2",
"@types/ms": "0.7.31",
"@types/node": "15.6.1",
"@types/validator": "13.1.3",
"@types/webpack-env": "1.16.0",
"@types/winston-syslog": "2.0.3",
"@typescript-eslint/eslint-plugin": "4.25.0",
"@typescript-eslint/parser": "4.25.0",
"chai": "4.3.4",
"clean-webpack-plugin": "4.0.0-alpha.0",
"dotenv": "10.0.0",
"eslint": "7.27.0",
"eslint-plugin-array-func": "3.1.7",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsdoc": "35.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-sonarjs": "0.7.0",
"eslint-plugin-standard": "5.0.0",
"husky": "^6.0.0",
"mocha": "8.4.0",
"mocha-multi-reporters": "1.5.1",
"nodemon": "2.0.7",
"nyc": "15.1.0",
"prettier": "2.3.0",
"prettier-standard": "16.4.1",
"ts-loader": "9.2.2",
"ts-node": "10.0.0",
"typescript": "4.3.2",
"webpack": "5.38.1",
"webpack-cli": "4.7.0",
"webpack-merge": "5.7.3",
"webpack-node-externals": "3.0.0"
},
"dependencies": {
"@godaddy/terminus": "4.8.0",
"@sentry/node": "6.4.1",
"@sentry/tracing": "6.4.1",
"apollo-server-cache-redis": "1.5.0",
"apollo-server-express": "2.25.0",
"apollo-server-plugin-response-cache": "0.9.0",
"connection-string": "4.3.4",
"dataloader-sequelize": "2.3.3",
"graphql": "15.5.0",
"graphql-depth-limit": "1.1.0",
"graphql-middleware": "6.0.10",
"graphql-yup-middleware": "1.0.0",
"helmet": "4.6.0",
"ioredis": "4.27.3",
"ioredis-mock": "5.6.0",
"morgan": "1.10.0",
"ms": "2.1.3",
"mysql2": "2.2.5",
"reflect-metadata": "0.1.13",
"sequelize": "6.6.2",
"sequelize-comment": "1.0.1",
"sequelize-paginate": "1.1.6",
"sequelize-soft-delete": "1.1.0",
"sequelize-typescript": "2.1.0",
"winston": "3.3.3",
"winston-syslog": "2.4.4",
"yup": "0.32.9"
}
}