forked from manwaring-automation/odin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.28 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
67
68
69
70
71
72
73
74
{
"name": "odin",
"version": "2.0.0",
"license": "MIT",
"scripts": {
"package": "dotenv -- sls package",
"deploy": "dotenv -- sls deploy",
"remove": "dotenv -- sls remove",
"postremove": "rimraf infrastructure/stack-outputs.yml",
"test": "jest --coverage",
"watch-tests": "jest --watch",
"codecov": "codecov -f coverage/*.json",
"validate-circleci": "circleci config validate",
"project-stats": "cloc . --quiet --exclude-dir=node_modules,.serverless,diagrams,coverage,package-lock.json,.gitignore,LICENSE,.env",
"prepare": "husky install"
},
"dependencies": {
"@manwaring/lambda-wrapper": "^4.4.4",
"@thundra/core": "^2.12.12",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@serverless/event-mocks": "^1.1.1",
"@types/aws-lambda": "^8.10.77",
"@types/aws-sdk": "^2.7.0",
"@types/chance": "^1.1.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"aws-sdk": "^2.923.0",
"chance": "^1.1.7",
"cloc": "^2.8.0",
"codecov": "^3.8.2",
"dotenv-cli": "^4.0.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"git-rev-sync": "^3.0.1",
"husky": "^6.0.0",
"jest": "^27.0.4",
"js-yaml": "^4.1.0",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"serverless": "^2.44.0",
"serverless-cloudformation-resource-counter": "^1.1.1",
"serverless-plugin-thundra": "^2.5.8",
"serverless-prune-versions": "^1.0.4",
"serverless-stack-output": "^0.2.3",
"serverless-webpack": "^5.5.0",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-node-externals": "^3.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"lint-staged": {
"*./src/**/*.ts": [
"eslint --fix"
]
},
"author": "Made with ♥ by Phillip Manwaring"
}