-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 2.5 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
{
"name": "study-buddies-server",
"version": "1.0.0",
"description": "study-buddies",
"main": "src/server.js",
"scripts": {
"dev": "npm run start:dev",
"start:dev": "nodemon 'src/server.ts' --exec 'ts-node' src/server.ts -e ts,graphql",
"start": "node 'dist/server.js'",
"build": "tsc -p .",
"lint": "eslint --fix src/**/*.ts",
"test": "jest",
"gql-gen": "graphql-codegen --config codegen.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roseline124/study-buddies-server.git"
},
"keywords": [],
"author": "study-buddies",
"license": "ISC",
"bugs": {
"url": "https://github.com/roseline124/study-buddies-server/issues"
},
"homepage": "https://github.com/roseline124/study-buddies-server#readme",
"devDependencies": {
"@graphql-codegen/cli": "1.17.0",
"@graphql-codegen/typescript": "1.17.0",
"@graphql-codegen/typescript-resolvers": "1.17.0",
"@types/express": "^4.17.7",
"@types/node": "^14.0.22",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"graphql-import": "^1.0.2",
"nodemon": "^2.0.4",
"sequelize-cli": "^6.2.0",
"ts-node": "^8.10.2"
},
"dependencies": {
"@graphql-tools/load-files": "^6.0.14",
"@graphql-tools/merge": "^6.0.14",
"@types/compression": "^1.7.0",
"@types/express-mysql-session": "^2.1.1",
"@types/express-session": "^1.17.0",
"@types/graphql": "^14.5.0",
"@types/graphql-depth-limit": "^1.1.2",
"@types/jest": "^26.0.4",
"@types/lodash": "^4.14.157",
"@types/passport-google-oauth": "^1.0.41",
"@types/passport-google-oauth20": "^2.0.3",
"apollo-server-express": "^2.15.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"express-mysql-session": "^2.1.4",
"express-session": "^1.17.1",
"graphql": "^15.3.0",
"graphql-depth-limit": "^1.1.0",
"graphql-import-node": "^0.0.4",
"graphql-tools": "^6.2.6",
"http": "0.0.1-security",
"install": "^0.13.0",
"jest": "^26.1.0",
"lodash": "^4.17.21",
"mysql2": "^2.1.0",
"open-graph-scraper": "^4.4.0",
"passport": "^0.4.1",
"passport-google": "^0.3.0",
"passport-google-oauth": "^2.0.0",
"passport-google-oauth20": "^2.0.0",
"sequelize": "^6.29.0",
"ts-jest": "^26.1.2",
"typescript": "^3.9.6"
}
}