-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
133 lines (133 loc) · 4.07 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "lemon-core",
"version": "3.2.11",
"description": "Lemon Serverless Micro-Service Platform",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build-ts",
"build-ts": "tsc -v && tsc",
"watch-ts": "tsc -w",
"doc": "npm run doc:html && open dist/docs/index.html",
"doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out dist/docs",
"doc:publish": "npm run doc:html && gh-pages -m \"docs(gh-pages): publish gh-pages via typedoc\" -d dist/docs",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,jsx,tsx}' --fix",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"!test": "------- run self-test with jest -----",
"test": "LS=1 jest --config=jest.config.json",
"test.lemon": "ENV=lemon npm run test",
"test:dev": "LS=1 jest --config=jest.config.json --watchAll",
"!test:watch": "---- custom test with profile -----",
"test:watch": "LS=1 AWS_SDK_JS_SUPPRESS_MAINTENANCE_MODE_MESSAGE=1 jest --config=jest.config.json --watchAll",
"test:watch.lemon": "ENV=lemon npm run test:watch",
"!prepare": "------- run self-test with jest -----",
"prepare": "npm run build",
"!prepublishOnly": "npm test && npm run lint && npm run format",
"prepublishOnly": "npm test && npm run lint",
"!plato": "----- analysis code complexity -----",
"plato": "plato -r -d complexity dist"
},
"husky": {
"hooks": {
"!pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,tsx,jsx}": [
"npm run lint",
"git add"
]
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=18.19.0"
},
"author": "Steve Jung <[email protected]>",
"license": "MIT",
"dependencies": {
"@elastic/elasticsearch": "7.12",
"@types/aws-lambda": "^8.10.62",
"@types/express": "^4.17.11",
"@types/express-serve-static-core": "^4.17.19",
"@types/ioredis": "^4.28.10",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash": "^4.14.185",
"async": "^3.2.4",
"aws-lambda": "^1.0.6",
"aws-sdk": "2.1354",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"express": "^4.18.1",
"ioredis": "^5.2.3",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.0",
"lemon-model": "^1.0.3",
"lodash": "^4.17.21",
"memcached": "^2.2.2",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"node-cache": "^5.1.2",
"qs": "^6.13.0",
"query-string": "^7.1.3",
"request": "^2.88.2",
"request-ip": "^3.3.0",
"source-map-support": "^0.5.21",
"ts-transformer-keys": "^0.4.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/async": "^3.2.15",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/crypto-js": "^4.2.2",
"@types/dotenv": "^6.1.1",
"@types/jest": "^27.4.1",
"@types/js-yaml": "^3.12.5",
"@types/memcached": "^2.2.6",
"@types/mime-types": "^2.1.0",
"@types/multer": "^1.4.7",
"@types/request": "^2.48.8",
"@types/request-ip": "0.0.34",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"codecov": "^3.7.2",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"faker": "^4.1.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"jest": "^27.5.1",
"lint-staged": "^13.1.0",
"prettier": "^2.7.1",
"superagent": "^5.3.1",
"supertest": "^4.0.2",
"ts-jest": "^27.1.5",
"ts-node": "^8.10.2",
"ttypescript": "^1.5.15",
"typedoc": "^0.23.15",
"typescript": "^4.8.3"
},
"private": false,
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lemoncloud-io/lemon-core.git"
},
"keywords": [
"lemoncloud",
"lemon-core",
"serverless"
],
"bugs": {
"url": "https://github.com/lemoncloud-io/lemon-core/issues"
},
"homepage": "https://github.com/lemoncloud-io/lemon-core#readme"
}