-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "apollo-studio-data-fetcher",
"version": "1.0.0",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"sideEffects": false,
"license": "MIT",
"scripts": {
"build": "yarn build:cjs && yarn build:esm",
"build:cjs": "rm -rf lib/cjs && tsc",
"build:esm": "rm -rf lib/esm && tsc -m esnext --outDir lib/esm",
"lint": "eslint . --fix",
"run": "ts-node ./src/run.ts",
"prepublish": "yarn build"
},
"dependencies": {
"async": "^3.2.0",
"aws-sdk": "^2.831.0",
"axios": "^0.21.1",
"config": "^3.3.3",
"dotenv": "^8.2.0",
"graphql": "^15.4.0",
"lodash": "^4.17.20",
"puppeteer": "^5.5.0"
},
"devDependencies": {
"@types/async": "^3.2.5",
"@types/async-retry": "^1.4.2",
"@types/config": "^0.0.38",
"@types/lodash": "^4.14.168",
"@types/puppeteer": "^5.4.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-migrate": "^0.1.15",
"ts-node": "^9.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn lint",
"git add"
]
}
}