This repository has been archived by the owner on Nov 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "my-sample-project",
"version": "1.0.0",
"description": "",
"typings": "dist/types/index.d.ts",
"scripts": {
"start": "webpack -w",
"test": "jest",
"build": "NODE_ENV=${NODE_ENV:-production} webpack",
"package": "sam package --template-file template.yaml --s3-bucket $npm_package_name-${STAGE:-dev} --output-template-file template.packaged.yaml",
"deploy": "sam deploy --template-file template.packaged.yaml --stack-name $npm_package_name-${STAGE:-dev} --capabilities CAPABILITY_IAM --parameter-override Stage=${STAGE:-dev} ProjectName=$npm_package_name --no-fail-on-empty-changeset",
"clean": "rm -rf -v dist/*"
},
"repository": {},
"author": "",
"license": "MIT",
"private": true,
"dependencies": {},
"devDependencies": {
"@types/aws-lambda": "^8.10.3",
"@types/chai": "^4.1.3",
"@types/jest": "^23.1.4",
"@types/node": "^10.0.4",
"aws-sdk": "^2.234.1",
"jest": "^23.3.0",
"ts-jest": "^23.0.0",
"ts-loader": "^4.2.0",
"ts-node": "^6.0.3",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.12.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.8.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.7.0",
"webpack-cli": "^3.1.1",
"yaml-cfn": "^0.2.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}