forked from gordonlkc/quasar-ssr-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 929 Bytes
/
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": "hello-world",
"version": "0.0.1",
"description": "A hello world application",
"productName": "Quasar App",
"cordovaId": "org.cordova.quasar.app",
"author": "Gordon Lam",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.vue src",
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"@quasar/app": "^1.7.1",
"@quasar/extras": "^1.0.0",
"quasar": "^1.0.0-beta.0",
"serverless-http": "^2.3.2"
},
"devDependencies": {
"@vue/eslint-config-airbnb": "^4.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.10.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^5.0.0",
"serverless": "^1.68.0",
"serverless-apigw-binary": "^0.4.4",
"serverless-offline": "^5.12.1"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.6.0",
"yarn": ">= 1.6.0"
},
"browserslist": [
"last 1 version, not dead, ie >= 11"
]
}