forked from dailydotdev/daily-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 3.09 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
{
"name": "daily-api",
"private": true,
"scripts": {
"start": "node ./node_modules/typeorm/cli.js migration:run && node index.js",
"dev": "nodemon ./index.ts | pino-pretty",
"lint": "eslint . --ext .js,.ts --max-warnings 0",
"build": "tsc",
"prebuild": "rm -rf build",
"postbuild": "cp -R ormconfig.js package.json package-lock.json seeds ./build",
"test": "jest --testEnvironment=node --runInBand",
"pretest": "npm run lint && cross-env NODE_ENV=test npm run db:migrate:reset",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"db:schema:sync": "npm run typeorm -- schema:sync",
"db:schema:drop": "npm run typeorm -- schema:drop",
"db:migrate:make": "npm run typeorm -- migration:generate -n",
"db:migrate:latest": "npm run typeorm -- migration:run",
"db:migrate:rollback": "npm run typeorm -- migration:revert",
"db:migrate:reset": "npm run db:schema:drop && npm run db:migrate:latest",
"db:seed:import": "ts-node bin/import.ts",
"db:seed:export": "ts-node bin/export.ts"
},
"dependencies": {
"@algolia/client-search": "^4.2.0",
"@google-cloud/profiler": "^4.0.0",
"@google-cloud/pubsub": "^1.7.2",
"@google-cloud/trace-agent": "^4.2.5",
"@mando75/typeorm-graphql-loader": "^0.3.0",
"@slack/client": "^5.0.2",
"algoliasearch": "^4.2.0",
"apollo-error-converter": "^1.1.1",
"apollo-server-fastify": "^2.14.4",
"apollo-server-plugin-response-cache": "^0.5.0",
"cloudinary": "^1.21.0",
"fast-json-stringify": "^2.0.0",
"fastify": "^2.13.1",
"fastify-helmet": "^3.0.2",
"fastify-plugin": "^1.6.1",
"fastify-rate-limit": "^3.0.1",
"graphql": "^14.6.0",
"graphql-iso-date": "^3.6.1",
"graphql-relay": "^0.6.0",
"graphql-upload": "^10.0.0",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"p-retry": "^4.2.0",
"pg": "^8.0.2",
"pg-query-stream": "^3.1.1",
"reflect-metadata": "^0.1.13",
"rss": "^1.2.2",
"twit": "^2.2.11",
"typeorm": "0.2.24",
"uuid": "^8.0.0",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@types/algoliasearch": "^3.34.10",
"@types/graphql": "^14.5.0",
"@types/graphql-relay": "^0.6.0",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.150",
"@types/node": "^13.13.2",
"@types/rss": "0.0.28",
"@types/supertest": "^2.0.8",
"@types/twit": "^2.2.24",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"apollo-server-testing": "^2.14.4",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"faker": "^4.1.0",
"jest": "^25.4.0",
"jest-junit": "^10.0.0",
"jest-mock-extended": "^1.0.8",
"nock": "^12.0.3",
"nodemon": "^2.0.3",
"pino-pretty": "^4.0.0",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^25.4.0",
"ts-node": "^8.9.0",
"typescript": "3.8.3"
}
}