This repository has been archived by the owner on Jun 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
74 lines (74 loc) · 1.83 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
{
"private": true,
"name": "serverless-express-typescript",
"description": "Serverless Express Typescript Starter Kit",
"version": "1.0.0",
"author": {
"name": "The Lab, by O2"
},
"contributors": [
{
"name": "Daniel Bradley",
"email": "[email protected]",
"url": "https://github.com/danielrbradley"
}
],
"repository": {
"type": "git",
"url": "https://github.com/o2Labs/serverless-express-typescript"
},
"license": "MIT",
"engines": {
"node": ">=4.3.2"
},
"scripts": {
"format": "prettier --write --config .prettierrc.yaml '**/*.ts'",
"clean": "rm -f src/*.js",
"test": "jest && tsc --noEmit",
"start": "ts-node src/local.ts",
"build": "yarn clean && jest && tsc",
"prepare": "yarn format && yarn test",
"package": "yarn build && serverless package",
"deploy": "yarn build && eval \"`aws-auth-helper` serverless deploy\""
},
"dependencies": {
"@types/aws-serverless-express": "^3.0.1",
"@types/compression": "^0.0.35",
"@types/cors": "^2.8.3",
"aws-serverless-express": "^3.1.0",
"compression": "^1.7.1",
"cors": "^2.8.4",
"express": "^4.16.2",
"pug": "^2.0.0-rc.4",
"source-map-support": "^0.5.3"
},
"devDependencies": {
"@types/faker": "^4.1.2",
"@types/jest": "^21.1.9",
"@types/node": "^8.5.1",
"@types/supertest": "^2.0.4",
"aws-auth-helper": "^1.0.0",
"faker": "^4.1.0",
"jest": "^22.0.4",
"prettier": "^1.9.2",
"serverless": "^1.26.0",
"supertest": "^3.1.0",
"ts-jest": "^22.0.0",
"ts-node": "^3.3.0",
"typescript": "^2.6.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".*\\.test.(ts|tsx|js)",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}