-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.75 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
{
"name": "graph-covid-19",
"version": "0.1.1",
"description": "A GraphQL server the NY Times covid-19 database",
"main": "index.js",
"scripts": {
"style:check": "eslint --ext .js --ext .jsx --ext tsx --ext ts . --quiet --cache",
"style:fix": "eslint --ext .js --ext .jsx --ext tsx --ext ts . --quiet --fix --cache",
"lint": "tslint -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "ts-node src/index.ts",
"start:dev": "ts-node-dev --respawn --transpileOnly src/index.ts",
"start:prod": "node dist/index.js",
"build": "tsc",
"test": "jest"
},
"pre-push": [
"format",
"style:fix",
"style:check",
"lint"
],
"author": "Scott Richardson <scott@scottrichardson.dev>",
"license": "MIT",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/graphql": "^14.5.0",
"apollo-engine": "^1.1.2",
"apollo-server": "^2.11.0",
"apollo-server-express": "^2.11.0",
"axios": "^0.19.2",
"crypto": "^1.0.1",
"csv-parse": "^4.8.8",
"express": "^4.17.1",
"graphql": "^14.6.0",
"morgan": "^1.10.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.6.2",
"tsc": "^1.20150623.0",
"type-graphql": "^0.17.6",
"typedi": "^0.8.0",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/csv-parse": "^1.2.2",
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.2.4",
"pre-push": "^0.1.1",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^6.1.0"
}
}