-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.37 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
{
"name": "SAMPLE",
"version": "0.0.1",
"description": "SAMPLE",
"main": "build/index.js",
"author": "Christian Garrovillo <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "babel src --out-dir build --extensions '.ts' ",
"watch": "babel --watch src --out-dir build --extensions '.ts' ",
"predeploy:dev": "yarn test && yarn build",
"predeploy:prod": "yarn test && yarn build",
"start": "yarn clean && yarn watch | sls offline start --stage dev",
"deploy": "yarn deploy:dev",
"deploy:prod": "sls deploy --stage prod",
"deploy:dev": "sls deploy --stage dev",
"clean": "rm -rf ./build",
"test": "jest",
"webhook:tunnel": "ngrok http 3001"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/runtime": "^7.13.10",
"apollo-server-lambda": "^2.22.2",
"graphql": "^15.5.0",
"serverless-http": "^2.7.0",
"typescript": "^4.2.2"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.31",
"babel-jest": "^26.6.3",
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"serverless-offline": "^6.8.0",
"ts-node": "^9.1.1"
}
}