forked from lesspod/lesspod-2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "lesspod-2.0",
"version": "1.0.0",
"description": "Lesspod-2.0 built with vue/nuxt/serverless",
"author": "Rajan Chandi",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint-autofix": "eslint --ext .js,.vue src test --fix",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"build": "cross-env NODE_ENV=production nuxt build",
"sls:local": "sls offline start --skipCacheInvalidation server/index.js",
"sls:create": "npm run build && sls create_domain && sls deploy",
"sls:delete": "sls remove && sls delete_domain",
"sls:deploy": "npm run build && sls deploy",
"test": "mocha && npm run check-licenses",
"check-licenses": "apache2-license-checker"
},
"dependencies": {
"@nuxtjs/auth": "^4.5.3",
"@nuxtjs/axios": "^5.4.1",
"@nuxtjs/pwa": "^3.0.0-beta.14",
"@nuxtjs/toast": "^3.0.2",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.3.1",
"bootstrap-vue": "^2.0.0-rc.15",
"bootswatch": "^4.3.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"dot-env": "0.0.1",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"express-session": "^1.15.6",
"highlight.js": "^9.15.6",
"husky": "^1.3.1",
"jquery": "^3.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.4.20",
"npm-check-updates": "^3.1.1",
"nuxt": "^2.5.1",
"nuxt-property-decorator": "^2.1.3",
"popper.js": "^1.14.7",
"reading-time": "^1.1.3",
"serverless-http": "^1.9.1",
"style-loader": "^0.23.1",
"terser": "^3.17.0",
"vue": "^2.6.10",
"vue-moment": "^4.0.0",
"vue-quill-editor": "^3.0.6",
"vue-sidebar-menu": "^3.6.2",
"vuejs-auto-complete": "^0.9.0",
"vuex-class": "^0.3.2",
"vuex-map-fields": "^1.3.2",
"vuex-persist": "^2.0.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@bbc/apache2-license-checker": "^1.1.4",
"autoprefixer": "^9.5.0",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-nuxt": "^0.4.3",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-vue": "^5.2.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-script-hook": "^1.0.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.10",
"prettier": "^1.16.4",
"sass-loader": "^7.1.0",
"serverless": "^1.39.1",
"serverless-domain-manager": "^3.2.1",
"serverless-offline": "^4.9.2",
"serverless-s3-sync": "^1.7.3",
"serverless-webpack": "^5.2.0",
"tailwindcss": "^0.7.4"
}
}