-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.27 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
{
"name": "iosshortcutsresponder",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "npm run aws:start",
"aws:start": "sam local start-api -p 3004",
"aws:validate": "sam validate --region eu-west-2",
"compile": "rm -f functions.zip && zip -r functions.zip --exclude=*.git* --exclude=*.DS_Store* --exclude='iosShortcutsResponder.yaml:Zone.Identifier' --exclude='template.yaml' --exclude='iosShortcutsResponder.yaml' --exclude=*.zip* .",
"aws:deploy": "npm run compile && aws lambda update-function-code --function-name iosShortcutsResponder --region eu-west-2 --zip-file fileb://functions.zip",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"test": "jest --config jest.config.js",
"test:watch": "npm run test -- --watch"
},
"author": "Akın Özgen <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^1.3.4"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"babel-jest": "^29.5.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7"
}
}