forked from saasify-sh/sheetful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "sheetful",
"version": "0.1.0",
"private": true,
"description": "The easiest way to turn your Google Sheet into a Restful API.",
"repository": "saasify-sh/sheetful",
"author": "Saasify <dev@saasify.sh>",
"license": "MIT",
"engines": {
"node": ">=8"
},
"scripts": {
"start": "node build/server.js",
"dev": "cross-env NODE_ENV=development nodemon --exec ts-node src/server.ts",
"predev": "run-s build:routes",
"clean": "del build dist",
"build": "run-s build:*",
"prebuild": "run-s clean",
"build:swagger": "tsoa swagger",
"build:routes": "tsoa routes",
"build:ts": "tsc",
"test": "run-s build",
"deploy": "now",
"predeploy": "run-s build",
"postdeploy": "now rm --safe sheetful"
},
"dependencies": {
"@saasify/google-spreadsheet": "^3.1.0",
"dotenv": "^8.2.0",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-compress": "^3.0.0",
"koa-router": "^8.0.8",
"lodash.pick": "^4.4.0",
"p-map": "^3.0.0",
"tsoa": "^2.5.13"
},
"devDependencies": {
"@types/koa": "^2.11.2",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-compress": "^2.0.9",
"@types/koa-router": "^7.4.0",
"@types/lodash.pick": "^4.4.6",
"@types/node": "^13.7.4",
"@types/p-map": "^2.0.0",
"cross-env": "^7.0.0",
"del-cli": "^3.0.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}