This repository was archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.67 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.67 KB
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
{
"name": "sam-webpack-plugin",
"version": "0.2.0",
"description": "Webpack plugin for building minimal AWS SAM apis",
"author": "Garrett Culos",
"license": "MIT",
"scripts": {
"build": "webpack --config webpack.dev.js",
"build.prod": "webpack --config webpack.prod.js",
"example.build": "webpack --config examples/webpack.js",
"example.build.prod": "webpack --config examples/webpack.prod.js",
"clean": "rimraf node_modules dist && npm install",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest --coverage",
"prettier:check": "prettier --config ./.prettierrc --list-different \"src/**/*{.ts,.js,.json}\"",
"prettier:fix": "prettier --config ./.prettierrc --staged --write \"src/**/*\"",
"prettier:quick": "pretty-quick --stage"
},
"dependencies": {
"archiver": "^3.1.1",
"cpx": "^1.5.0",
"fs-extra": "^7.0.1",
"make-dir": "^3.0.0",
"mv": "^2.1.1",
"rimraf": "^2.7.1"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/archiver": "^2.1.3",
"@types/cpx": "^1.5.1",
"@types/fs-extra": "^5.1.0",
"@types/glob": "^7.1.1",
"@types/jest": "^22.2.3",
"@types/jsonwebtoken": "^8.3.6",
"@types/make-dir": "^2.1.0",
"@types/mv": "^2.1.0",
"@types/mysql": "^2.15.8",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^11.13.0",
"@types/rimraf": "^2.0.2",
"@types/webpack": "^4.4.27",
"apollo-server-lambda": "^2.14.3",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-preset-latest-node": "^3.1.1",
"graphql": "^14.6.0",
"graphql-tools": "^4.0.6",
"husky": "^1.3.1",
"jest": "^24.7.0",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"ts-jest": "^24.3.0",
"ts-loader": "^5.4.5",
"tslint": "^5.20.1",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2",
"webpack-sources": "^1.4.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:quick && npm run test && npm run lint && npm run build.prod && npm run example.build.prod"
}
},
"main": "lib/prod/index.js",
"repository": {
"type": "git",
"url": "https://github.com/GarrettCulos/sam-webpack-plugin"
},
"bugs": {
"url": "https://github.com/GarrettCulos/sam-webpack-plugin"
},
"homepage": "https://github.com/GarrettCulos/sam-webpack-plugin"
}