forked from bundlewatch/service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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
{
"name": "bundlewatch-service",
"version": "0.0.1",
"license": "UNLICENSED",
"scripts": {
"postinstall": "yarn-deduplicate"
},
"husky": {
"hooks": {
"pre-commit": "./infrastructure/check-versions.sh && lint-staged"
}
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"./infrastructure/testing/jestSetupFile.js"
],
"collectCoverage": true,
"coverageDirectory": "artifacts/test_results/jest/coverage"
},
"lint-staged": {
"*.js": [
"node_modules/.bin/eslint"
]
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"aws-sdk": "^2.852.0",
"axios": "^0.19.2",
"body-parser": "^1.18.2",
"bytes": "^3.0.0",
"dynamoose": "^1.11.1",
"express": "^4.16.3",
"jsonpack": "^1.1.5",
"lodash.merge": "^4.6.2",
"mustache-express": "^1.3.0",
"serverless-dynamodb-local": "^0.2.40",
"serverless-http": "^2.7.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.1",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"serverless": "^2.72.1",
"serverless-domain-manager": "^5.4.1",
"serverless-offline": "^8.3.1",
"yarn-deduplicate": "^3.1.0"
}
}