-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.06 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "runtime-nodejs",
"version": "1.0.0-beta.10",
"description": "the node runtime for laf",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"private": "true",
"scripts": {
"start": "node ./dist/index.js",
"dev": "npx concurrently npm:dev:*",
"dev:start": "npx nodemon ./dist/index.js",
"dev:watch": "npm run watch",
"build": "tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json -w",
"prepublishOnly": "npm run build",
"trace-gc": "node --trace_gc --trace_gc_verbose ./dist/index.js",
"init": "node ./dist/init.js",
"prettier": "npx prettier --write ./src"
},
"keywords": [
"laf",
"BaaS",
"mongodb",
"firebase",
"serverless"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.231.0",
"@aws-sdk/client-sts": "^3.231.0",
"@aws-sdk/s3-request-presigner": "^3.231.0",
"@kubernetes/client-node": "^0.18.0",
"@lafjs/cloud": "^1.0.0-beta.7",
"axios": "^1.4.0",
"chatgpt": "^5.2.5",
"cors": "^2.8.5",
"database-proxy": "^1.0.0-beta.2",
"dayjs": "^1.11.7",
"dotenv": "^8.2.0",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-xml-bodyparser": "^0.3.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"log4js": "^6.7.1",
"minio": "^7.0.32",
"mongodb": "^4.12.1",
"mongodb-uri": "^0.9.7",
"multer": "^1.4.5-lts.1",
"node-modules-utils": "^0.8.2",
"nodemailer": "^6.6.3",
"validator": "^13.7.0",
"ws": "^8.11.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/ejs": "^3.1.1",
"@types/express": "^4.17.15",
"@types/express-xml-bodyparser": "^0.3.2",
"@types/jsonwebtoken": "^8.5.1",
"@types/lodash": "^4.14.171",
"@types/mongodb-uri": "^0.9.1",
"@types/multer": "^1.4.5",
"@types/node": "^18.11.15",
"@types/nodemailer": "^6.4.4",
"@types/validator": "^13.1.3",
"@types/ws": "^8.5.3",
"typescript": "^5.0.2"
},
"nodemonConfig": {
"ignore": [
"test/*",
"src/*",
"http/*"
],
"delay": 1000
}
}