forked from AnomalyInnovations/serverless-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.02 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
75
76
77
{
"name": "serverless-bundle",
"version": "1.4.0",
"description": "An extension of the serverless-webpack plugin that bundles your Node.js Lambda functions.",
"main": "index.js",
"scripts": {
"jest-clear-cache": "jest --clearCache",
"test": "jest --no-watchman tests/index.test.js",
"test-scripts": "./bin/scripts.js test --TEST_MODE tests/scripts/test.js"
},
"bin": {
"serverless-bundle": "./bin/scripts.js"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/tests/scripts/setupTests.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/AnomalyInnovations/serverless-bundle.git"
},
"author": "Jay V <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/runtime": "^7.5.4",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-source-map-support": "^2.1.1",
"chalk": "^2.4.2",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.1.4",
"cross-spawn": "^6.0.5",
"css-loader": "^3.5.2",
"dotenv": "^8.2.0",
"eslint": "^5.16.0",
"eslint-config-strongloop": "^2.1.0",
"eslint-loader": "^2.2.1",
"hard-source-webpack-plugin": "^0.13.1",
"ignore-loader": "^0.1.2",
"isomorphic-style-loader": "^5.1.0",
"jest": "^24.8.0",
"node-sass": "^4.14.1",
"pkg-up": "^3.1.0",
"regenerator-runtime": "^0.13.2",
"sass-loader": "^8.0.2",
"serverless": "^1.71.3",
"serverless-webpack": "^5.3.1",
"source-map-support": "^0.4.18",
"webpack": "^4.35.3"
},
"devDependencies": {
"husky": "^3.0.8",
"lint-staged": "^9.4.2",
"prettier": "1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}