-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.88 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
{
"name": "serverless-adonis",
"private": true,
"version": "1.0.0",
"main": "build/server.js",
"author": "Gustavo Bittencourt Satheler <[email protected]>",
"license": "MIT",
"scripts": {
"build": "node ace build --production",
"start": "node server.js",
"dev": "node ace serve --watch",
"lint": "eslint . --ext=.ts",
"serverless:start": "npm run build && sls offline -c serverless.aws.yml",
"deploy": "rimraf .serverless && sls deploy",
"deploy:aws": "rimraf tmp/layers && yarn layer:node_modules && yarn deploy -c serverless.aws.yml",
"deploy:azure": "yarn deploy -c serverless.azure.yml",
"layer:node_modules": "yarn install --modules-folder ./tmp/layers/nodejs/node_modules --production=true"
},
"dependencies": {
"@adonisjs/auth": "^8.0.7",
"@adonisjs/core": "^5.1.9",
"@adonisjs/lucid": "^15.0.1",
"@adonisjs/repl": "^3.1.4",
"@adonisjs/shield": "^7.0.4",
"@satheler/s12r": "^0.2.7",
"execa": "^5.0.0",
"luxon": "^1.26.0",
"pg": "^8.5.1",
"phc-bcrypt": "^1.0.5",
"proxy-addr": "^2.0.6",
"reflect-metadata": "^0.1.13",
"serverless-plugin-typescript": "^1.1.9",
"source-map-support": "^0.5.19",
"uuid": "^8.3.2"
},
"devDependencies": {
"@adonisjs/assembler": "^5.3.2",
"@types/uuid": "^8.3.0",
"adonis-preset-ts": "^2.0.0",
"eslint": "^7.22.0",
"eslint-plugin-adonis": "^1.2.1",
"git-commit-msg-linter": "^3.0.3",
"husky": "4",
"lint-staged": "^10.5.4",
"pino-pretty": "^4.7.1",
"rimraf": "^3.0.2",
"serverless": "^2.35.0",
"serverless-domain-manager": "^5.1.0",
"serverless-offline": "^6.9.0",
"typescript": "~4.1",
"youch": "^2.1.1",
"youch-terminal": "^1.0.1"
},
"engines": {
"node": ">=12.x"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
]
}
}