-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "architect-serverless-typescript",
"version": "1.0.0",
"description": "Serverless Architect Project using Typescript",
"main": "index.js",
"dependencies": {
"@architect/architect": "^8.3.6",
"@architect/functions": "^3.13.8",
"aws-sdk": "^2.804.0",
"aws-serverless-express": "^3.3.9",
"binary-case": "^1.1.4",
"cookie": "^0.4.1",
"cookie-signature": "^1.1.0",
"csrf": "^3.1.0",
"media-typer": "^0.3.0",
"mime-db": "^1.44.0",
"mime-types": "^2.1.27",
"node-webtokens": "^1.0.4",
"random-bytes": "^1.0.0",
"rndm": "^1.2.0",
"run-parallel": "^1.1.10",
"run-waterfall": "^1.1.7",
"tsscmp": "^1.0.6",
"type-is": "^1.6.18",
"typescript": "^4.1.2",
"uid-safe": "^2.1.5"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/node": "^14.14.11",
"commitizen": "^4.2.2",
"husky": "^4.3.5"
},
"scripts": {
"build": "npx tsc",
"start": "npm run build && npx arc sandbox",
"deploy:arc": "npm run build && npx arc deploy",
"deploy:arc-production": "npm run build && npx arc deploy --production",
"arc:destroy": "npx arc destroy --name architect-serverless-typescript --force"
},
"keywords": [
"typescript",
"serverless",
"architect",
"node",
"aws"
],
"author": "Martin Patino <[email protected]>",
"license": "mit",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}