forked from hyochan/ts-apollo-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.03 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
{
"name": "ts-apollo-sequelize",
"version": "0.0.1",
"description": "Graphql Yoga Typescript Example",
"main": "src/server.ts",
"repository": "https://github.com/dooboolab/ts-graphql-yoga-example",
"author": "dooboolab",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development nodemon --exec ts-node src/server.ts",
"deploy": "tsc && az webapp up -n whatssub-dev",
"watch": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/index.ts",
"lint": "eslint src/**/**/*.ts && eslint tests/**/**/*.ts",
"tsc": "tsc",
"test": "NODE_ENV=test jest",
"test:coverage": "jest -w 1 --coverage",
"test:watch": "jest --watch",
"codegen": "graphql-codegen",
"generate": "graphql-codegen --config codegen.yml",
"codecov": "codecov"
},
"dependencies": {
"apollo-server": "^2.7.0",
"apollo-server-express": "^2.7.0",
"graphql": "^14.4.2",
"graphql-import": "^0.7.1",
"http": "^0.0.0",
"jest": "^24.8.0",
"jsonwebtoken": "^8.5.1",
"merge-graphql-schemas": "^1.5.8",
"mysql2": "^1.6.5",
"sequelize": "^5.10.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.4.0",
"@graphql-codegen/typescript": "^1.4.0",
"@graphql-codegen/typescript-resolvers": "1.4.0",
"@types/bluebird": "^3.5.27",
"@types/express": "^4.17.0",
"@types/graphql": "^14.2.2",
"@types/jest": "^24.0.15",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^12.6.8",
"@types/sequelize": "^4.28.3",
"@types/validator": "^10.11.1",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"codecov": "^3.5.0",
"dotenv": "^8.0.0",
"eslint": "^6.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.19.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"resolutions": {
"graphql": "14.4.2"
}
}