-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "sls-multi-offline",
"description": "Tool that allows you to run multiple serverless api or db instance under for local development purposes",
"version": "1.0.4",
"repository": {
"type": "git",
"url": "https://github.com/TheSmartMonkey/sls-multi-offline"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"npmi": "npm ${NODE_INSTALL_OPTIONS:-i} && cd $INIT_CWD/sample/db && npm ${NODE_INSTALL_OPTIONS:-i} && cd $INIT_CWD/sample/posts && npm ${NODE_INSTALL_OPTIONS:-i} && cd $INIT_CWD/sample/users && npm ${NODE_INSTALL_OPTIONS:-i}",
"clean": "del ./build/*",
"build": "npm run clean && tsc",
"pub": "npm version patch && npm run build && npm publish",
"dev": "ts-node src/index.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@types/concurrently": "^6.0.1",
"@types/express": "^4.17.11",
"@types/express-http-proxy": "^1.6.1",
"child_process": "^1.0.2",
"concurrently": "^6.2.0",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"fs": "0.0.1-security",
"http-proxy-middleware": "^2.0.0",
"path": "^0.12.7",
"yaml": "^1.10.2"
},
"bin": {
"sls-multi-offline": "build/index.js"
},
"devDependencies": {
"del-cli": "^3.0.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}