forked from AnomalyInnovations/serverless-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "serverless-bundle",
"version": "4.0.1",
"description": "An extension of the serverless-webpack plugin that bundles your ES6 + TypeScript Node.js Lambda functions.",
"main": "index.js",
"scripts": {
"jest-clear-cache": "jest --clearCache",
"test": "jest --no-watchman"
},
"bin": {
"serverless-bundle": "./bin/scripts.js"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/tests/helpers/setup-tests.js"
],
"testPathIgnorePatterns": [
"<rootDir>/scripts",
"<rootDir>/tests/scripts/tests",
"<rootDir>/tests/aliases-jest/tests",
"<rootDir>/tests/typescript-jest/tests"
]
},
"repository": {
"type": "git",
"url": "https://github.com/AnomalyInnovations/serverless-bundle.git"
},
"author": "Jay V <[email protected]>",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"chalk": "^2.4.2",
"concat-text-webpack-plugin": "^0.1.6",
"copy-webpack-plugin": "^6.1.0",
"core-js": "^3.1.4",
"cross-spawn": "^6.0.5",
"css-loader": "^3.5.2",
"dotenv": "^8.2.0",
"eslint": "^7.12.0",
"eslint-config-strongloop": "^2.1.0",
"eslint-loader": "^4.0.2",
"fork-ts-checker-webpack-plugin": "^4.0.1",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"hard-source-webpack-plugin": "^0.13.1",
"ignore-loader": "^0.1.2",
"import-fresh": "^3.2.1",
"isomorphic-style-loader": "^5.1.0",
"jest": "^26.5.3",
"node-sass": "^4.14.1",
"pkg-up": "^3.1.0",
"raw-loader": "^4.0.1",
"regenerator-runtime": "^0.13.2",
"resolve": "^1.18.1",
"sass-loader": "^8.0.2",
"serverless-webpack": "^5.3.1",
"source-map-support": "^0.4.18",
"ts-jest": "^26.4.1",
"ts-loader": "^6.2.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-node-externals": "^2.5.2"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"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"
]
}
}