-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.25 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "serverless-cnode-nuxtjs",
"version": "0.1.0",
"description": "Serverles CNode Client",
"author": "yugasun",
"scripts": {
"dev": "nodemon",
"build": "nuxt build",
"build:sls": "rimraf .nuxt && cross-env NODE_ENV=production SERVERLESS=true nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue .",
"lint-staged": "eslint --ext .js,.vue .",
"deploy": "serverless deploy",
"deploy:layer": "serverless deploy --target=./layer"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"linters": {
"{pages,components,layouts,middleware,plugins,store}/**/*.{vue,js}": [
"npm run lint",
"eslint --fix",
"git add"
]
},
"ignore": [
"assets",
"static"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@nuxtjs/axios": "^5.12.0",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/toast": "^3.3.1",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"lru-cache": "^6.0.0",
"normalize-scss": "^7.0.1",
"nuxt": "^2.14.0",
"rimraf": "^3.0.2",
"vuex-persistedstate": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^7.5.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"nuxt-sass-resources-loader": "^2.0.5",
"sass-bem": "^2.6.5",
"sass-loader": "^9.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serverless-plus/serverless-cnode-nuxtjs.git"
},
"keywords": [
"serverless",
"cnode",
"nuxt.js",
"ssr"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/serverless-plus/serverless-cnode-nuxtjs/issues"
},
"homepage": "https://github.com/serverless-plus/serverless-cnode-nuxtjs#readme"
}