-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.13 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
{
"name": "lyrical",
"version": "1.0.0",
"description": "Starter point for a graphQL course",
"main": "index.ts",
"repository": {
"type": "git",
"url": "https://github.com/StephenGrider/Lyrical-GraphQL"
},
"scripts": {
"build": "NODE_ENV=production ts-node webpack.config.ts ",
"serve": "NODE_ENV=production node ./dist/server.bundle.js",
"dev": "NODE_ENV=development ts-node-dev index.ts",
"lint": "tslint --project tsconfig.json --config tslint.json",
"lint:fix": "npm run lint -- --fix",
"prettier-lint-all": "prettier --write \"{server,client}/**/*.{js,jsx,ts,tsx}\" \"*.{js, ts}\" && npm run lint:fix",
"generate": "graphql-codegen --config codegen.yml"
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo-cache-inmemory": "^1.6.2",
"apollo-client": "^2.6.2",
"apollo-link-http": "^1.5.15",
"apollo-link-ws": "^1.0.19",
"apollo-server-express": "^2.9.7",
"axios": "^0.19.0",
"bad-words": "^3.0.3",
"body-parser": "^1.19.0",
"connect-mongo": "^2.0.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-graphql": "^0.8.0",
"express-session": "^1.16.2",
"graphql": "^14.3.1",
"graphql-subscriptions": "^1.1.0",
"graphql-tag": "^2.10.1",
"lodash": "^4.17.11",
"mongoose": "^5.6.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react": "^16.8.6",
"react-apollo": "^2.5.6",
"react-dom": "^16.8.6",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"subscriptions-transport-ws": "^0.9.16"
},
"devDependencies": {
"@graphql-codegen/add": "^1.3.1",
"@graphql-codegen/cli": "^1.3.0",
"@graphql-codegen/introspection": "1.3.0",
"@graphql-codegen/typescript": "1.3.0",
"@graphql-codegen/typescript-operations": "1.3.0",
"@graphql-codegen/typescript-react-apollo": "1.3.0",
"@types/body-parser": "^1.17.0",
"@types/express": "^4.17.0",
"@types/express-graphql": "^0.8.0",
"@types/graphql": "^14.2.0",
"@types/html-webpack-plugin": "^3.2.0",
"@types/lodash": "^4.14.134",
"@types/mongoose": "^5.5.6",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"@types/react-router": "^5.0.2",
"@types/react-router-dom": "^4.3.4",
"@types/webpack": "^4.4.32",
"@types/webpack-dev-middleware": "^2.0.3",
"@types/webpack-dev-server": "^3.1.7",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.0.0",
"del": "^5.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.2",
"ts-node": "^8.4.1",
"ts-node-dev": "^1.0.0-pre.43",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.2",
"webpack": "^4.34.0",
"webpack-dev-middleware": "^3.7.0",
"webpack-dev-server": "^3.8.2",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"tslint --config tslint.json --fix",
"git add"
]
}
}