-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 1.21 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
{
"name": "serverless-nodejs-starter-template",
"version": "1.0.0",
"description": "A boilerplate for new Serverless Nodejs projects with tests and basic configurations",
"main": "cli.js",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {},
"devDependencies": {
"dotenv": "^8.2.0",
"jest": "^24.9.0",
"serverless-dotenv-plugin": "^2.1.1",
"serverless-offline": "^5.12.0"
},
"scripts": {
"config": "cp .env.example .env && cp .env.example .env.develop && cp .env.example .env.staging && cp .env.example .env.production",
"deploy": "NODE_ENV=production sls deploy",
"deploy-staging": "NODE_ENV=staging sls deploy",
"deploy-develop": "NODE_ENV=develop sls deploy",
"local": "node cli.js",
"invoke": "sls invoke local -f hello -p test-data.json",
"api": "sls offline start",
"test": "jest -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netcode/serverless-nodejs-starter-template.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/netcode/serverless-nodejs-starter-template/issues"
},
"homepage": "https://github.com/netcode/serverless-nodejs-starter-template#readme"
}