-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "platformkit-api",
"description": "Deploy static site generators & serverless functions on any cloud platform.",
"version": "0.0.1",
"license": "mit",
"keywords": [
"node",
"faas",
"jamstack",
"serverless",
"static site generator"
],
"scripts": {
"dev": "ts-node src/index.ts",
"start": "ts-node src/index.ts",
"pull": "node commands/git/pull.js",
"reset": "node commands/git/reset.js",
"commit": "node commands/git/commit.js",
"push": "node commands/git/push.js",
"build": "node commands/git/build.js",
"build-functions": "node commands/serverless/install-functions-dependencies.js",
"deploy": "node commands/git/pull.js; node commands/git/build.js; node commands/serverless/install-functions-dependencies.js;"
},
"dependencies": {
"@types/express": "4.17.11",
"@types/node": "12.20.10",
"apollo-server": "^2.25.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dotenv-flow": "^3.2.0",
"express": "4.17.1",
"express-bearer-token": "^2.4.0",
"express-jwt": "^6.0.0",
"fs": "0.0.1-security",
"fs-extra": "^10.0.0",
"jsonwebtoken": "^8.5.1",
"lambda-local": "^1.7.4",
"ncp": "^2.0.0",
"nodegit": "^0.27.0",
"shelljs": "^0.8.4",
"ts-node": "9.1.1",
"typescript": "4.2.4",
"validatorjs": "^3.22.1"
},
"devDependencies": {},
"engines": {
"node": "14.x"
}
}