forked from ixartz/Serverless-Boilerplate-Express-TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.63 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
{
"name": "serverless-boilerplate-express-typescript",
"version": "1.0.0",
"description": "Serverless framework ExpressJS TypeScript",
"scripts": {
"dev": "cross-env NODE_ENV=development sls offline start --stage offline",
"tail-log": "sls logs -f app -t",
"deploy-prod": "cross-env NODE_ENV=production sls deploy --stage prod",
"remove-prod": "sls remove --stage prod",
"clean": "rimraf dist .webpack .serverless",
"lint": "eslint --ext .js,.ts .",
"build-types": "tsc --noEmit --pretty",
"prepare": "husky install",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'"
},
"dependencies": {
"express": "^4.17.1",
"helmet": "^4.6.0",
"serverless-http": "^2.7.0"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/chai-http": "^4.2.0",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unused-imports": "^1.1.2",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"mocha": "^9.1.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"serverless": "^2.52.1",
"serverless-bundle": "^5.0.2",
"serverless-dotenv-plugin": "^3.9.0",
"serverless-offline": "^8.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"author": "Ixartz (https://github.com/ixartz)"
}