-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "graphql-resolver-optimzation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint src --ext .ts",
"dev": "export TRANSPILE_ONLY=true && nodemon",
"dev:compile": "export TRANSPILE_ONLY=false && nodemon",
"build": "rm -rf dist && ./node_modules/.bin/tsc",
"start": "node ./dist/src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@nexus/schema": "^0.13.1",
"@sentry/node": "^5.25.0",
"@types/qs": "^6.9.3",
"apollo-datasource-rest": "^0.7.0",
"apollo-server-express": "^2.10.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.6.0",
"graphql-tools": "^4.0.7",
"lodash": "^4.17.15",
"qs": "^6.9.4"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/express": "^4.17.2",
"@types/graphql": "^14.5.0",
"@types/lodash": "^4.14.149",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"nodemon": "^2.0.2",
"prettier": "^2.0.5",
"ts-node": "^8.10.1",
"typescript": "^3.8.2"
}
}