-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.78 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
{
"name": "retreivo_server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"dev": "nodemon dist/index.js",
"start": "node dist/index.js",
"start2": "ts-node src/index.ts",
"dev2": "nodemon --delay 2 --exec ts-node src/index.ts",
"seed:config": "ts-node ./node_modules/typeorm-seeding/dist/cli.js config",
"seed:run": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codestates/retrivo_server.git"
},
"devDependencies": {
"@types/connect-redis": "^0.0.14",
"@types/cors": "^2.8.7",
"@types/dotenv-safe": "^8.1.1",
"@types/express": "^4.17.7",
"@types/express-session": "^1.17.0",
"@types/faker": "^5.1.4",
"@types/ioredis": "^4.17.3",
"@types/node": "^14.14.10",
"@types/nodemailer": "^6.4.0",
"@types/passport": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"gen-env-types": "^1.0.3",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"nodemon": "^2.0.4",
"prettier": "^2.2.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@sendgrid/mail": "^7.4.0",
"@types/lodash": "^4.14.165",
"@types/passport-github2": "^1.2.4",
"@types/passport-google-oauth20": "^2.0.4",
"@types/uuid": "^8.3.0",
"apollo-server-express": "^2.16.1",
"argon2": "^0.26.2",
"class-validator": "^0.12.2",
"connect-redis": "^5.0.0",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"faker": "^5.1.0",
"graphql": "^15.3.0",
"graphql-passport": "^0.6.3",
"graphql-type-json": "^0.3.2",
"ioredis": "^4.17.3",
"lodash": "^4.17.20",
"nodemailer": "^6.4.11",
"passport": "^0.4.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.3.0",
"reflect-metadata": "^0.1.13",
"sendgrid-mail": "^0.0.2",
"type-graphql": "^1.0.0-rc.3",
"typeorm": "^0.2.25",
"typeorm-seeding": "^1.6.1",
"uuid": "^8.3.1"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codestates/im23final4_server/issues"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"homepage": "https://github.com/codestates/im23final4_server#readme"
}