-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.38 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.38 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
{
"name": "nuxt-on-lambda",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/mya-ake/nuxt-on-lambda.git",
"author": "t.shibuta <make.app.ts@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/local.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/local.js",
"generate:error": "cross-env NODE_ENV=production GENERATE_ERROR_PAGE=true nuxt generate",
"lint": "vue-cli-service lint --no-fix .",
"lint:fix": "vue-cli-service lint .",
"precommit": "npm run lint",
"sls": "sls",
"sls:deploy": "sls deploy",
"deploy": "cross-env NODE_ENV=production ENDPOINT_ENV=cf node bin/deploy/index.js",
"deploy:api_gw": "cross-env NODE_ENV=production ENDPOINT_ENV=api_gw run-s build sls:deploy",
"delete": "sls remove"
},
"dependencies": {
"@nuxtjs/dotenv": "^1.4.1",
"aws-serverless-express": "^3.3.8",
"cross-env": "^7.0.2",
"express": "^4.16.4",
"nuxt": "^2.12.2"
},
"devDependencies": {
"@vue/cli-plugin-eslint": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.3",
"serverless": "^1.69.0"
}
}