-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.04 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
{
"name": "backend",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"abstract-cache": "^1.0.1",
"abstract-cache-redis": "^1.0.2",
"apollo-server-fastify": "^2.4.8",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.2.0",
"class-validator": "^0.9.1",
"dataloader": "^1.4.0",
"fastify": "^2.3.0",
"fastify-caching": "^5.0.0",
"fastify-cookie": "^3.0.2",
"fastify-cors": "^2.1.3",
"fastify-redis": "^3.1.0",
"fastify-server-session": "^3.0.1",
"graphql": "^14.2.1",
"graphql-rate-limit-directive": "^1.1.0",
"ioredis": "^4.9.0",
"lodash": "^4.17.11",
"pg": "^7.10.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.17.3",
"typedi": "^0.8.0",
"typeorm": "^0.2.17",
"typeorm-typedi-extensions": "^0.2.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/connect-redis": "^0.0.10",
"@types/faker": "^4.1.5",
"@types/graphql": "^14.2.0",
"@types/ioredis": "^4.0.10",
"@types/jest": "^24.0.12",
"@types/lodash": "^4.14.123",
"@types/node": "^11.13.9",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.7.0",
"dotenv-safe": "^6.1.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "7.12.4",
"faker": "^4.1.0",
"jest": "^24.7.1",
"jsverify": "^0.8.4",
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"ts-node-dev": "^1.0.0-pre.33",
"typescript": "^3.4.5"
},
"scripts": {
"start": "ts-node-dev -r dotenv-safe/config --respawn src/index.ts",
"db:setup": "ts-node -r dotenv-safe/config ./src/test-utils/setup.ts",
"lint": "eslint src/**/*.{js,jsx,ts,tsx} --quiet",
"test": "yarn run db:setup && jest",
"build": "tsc"
}
}