-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.38 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
{
"name": "snowflake-aws-mysql-connector",
"version": "0.0.1",
"license": "mit",
"private": true,
"bin": {
"snowflake-aws-mysql-connector": "bin/snowflake-aws-mysql-connector.js"
},
"scripts": {
"build": "npm run build:ts",
"build:ts": "tsc",
"build:cdk": "npm run build:lambdafunction && npm run build:lambdalayer",
"build:lambdafunction": "rm -rf dist/app/ && mkdir -p dist/app/conf-file/ && cp -a conf/ dist/app/conf-file/ && npm install && npm run build:ts",
"build:lambdalayer": "rm -rf dist/lambda-layer/ && mkdir -p dist/lambda-layer/nodejs/ && cp package.json dist/lambda-layer/nodejs/ && cp package-lock.json dist/lambda-layer/nodejs/ && npm --prefix dist/lambda-layer/nodejs/ install --production",
"watch": "tsc -w",
"test": "jest",
"clean": "rm -rf node_modules/ dist/"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.119",
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"typescript": "^3.9.7"
},
"dependencies": {
"aws-cdk-lib": "^2.93.0",
"aws-lambda": "^1.0.7",
"constructs": "^10.2.69",
"mysql2": "^2.2.5",
"source-map-support": "^0.5.16"
}
}