-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 979 Bytes
/
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
{
"name": "sheets-apps-script-serverless-graphql",
"version": "0.0.1",
"description": "Expose your Google Sheet's data with GraphQL using Google Apps Script.",
"main": "src/index.ts",
"author": "Kálmán Tarnay",
"license": "MIT",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"push": "clasp push",
"deploy": "node tools/deploy.js",
"watch": "watch 'yarn run build && yarn run push && yarn deploy' src/",
"build": "webpack --mode development",
"detach": "rm .clasp.json && rm .deploymentId && rm dist/appsscript.json"
},
"devDependencies": {
"@types/google-apps-script": "^1.0.10",
"awesome-typescript-loader": "^5.2.1",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"watch": "^1.0.2",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"core-js": "^3.2.1",
"graphql": "^14.5.8"
}
}