-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "gapi-to-graphql",
"author": "rlancer",
"license": "MIT",
"version": "2.0.7",
"description": "Converts any Google Data API to GraphQL",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/rlancer/gapi-to-graphql",
"email": "[email protected]",
"scripts": {
"precommit": "npm run clean && npm run build && lint-staged",
"test": "echo \"Error: no test specified\" && exit 0",
"scratch": "nodemon --exec ts-node src/scratch.ts",
"build": "tsc",
"prepublishOnly": "npm run clean && npm run download-apis && npm run compile-ts && npm run gapi-move",
"clean": "rm -rf dist && rm -rf google_apis && rm -rf src/google_apis && mkdir src/google_apis",
"download-apis": "ts-node src/_download_all_gapis.ts",
"compile-ts": "tsc",
"gapi-move": "mv dist/google_apis .",
"relese": "np"
},
"dependencies": {
"axios": "^0.19.0",
"debug": "^4.1.1",
"graphql": "^14.5.8"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/graphql": "^14.5.0",
"@types/node": "^12.12.14",
"apollo-server": "^2.9.12",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"nodemon": "^2.0.1",
"np": "^5.2.1",
"prettier": "^1.19.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"lint-staged": {
"/src/**/*.js": [
"prettier --print-width 150 --no-semi --single-quote --jsx-bracket-same-line --write",
"git add"
]
}
}