-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.56 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
{
"name": "subscription_example",
"version": "1.1.1",
"description": "Supersimple ApolloServer test for subscriptions",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "ts-node-dev --respawn --transpile-only --watch './**/*.ts,./**/*.graphql' src/index.ts",
"build": "tsc",
"generate": "graphql-codegen",
"lint": "npm run lint:types && npm run lint:eslint",
"lint:types": "tsc --noEmit",
"lint:eslint": "eslint --quiet --fix './src/**/*.{ts,js}'"
},
"author": "Max Gordon",
"license": "ISC",
"dependencies": {
"@graphql-tools/load-files": "^6.4.0",
"@graphql-tools/merge": "^8.1.2",
"@graphql-tools/schema": "^8.2.0",
"apollo-server-express": "^3.3.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"graphql": "^15.5.3",
"graphql-passport": "^0.6.3",
"graphql-subscriptions": "^1.2.1",
"passport": "^0.4.1",
"subscriptions-transport-ws": "^0.9.19"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.2.0",
"@graphql-codegen/typescript": "^2.2.2",
"@graphql-codegen/typescript-resolvers": "^2.2.1",
"@tsconfig/node14": "^1.0.1",
"@types/express-session": "^1.17.4",
"@types/node": "16",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "2.4.1",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
}
}