-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·65 lines (65 loc) · 2.55 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
{
"name": "nuxt-serverless-ts-issue",
"version": "0.0.0",
"description": "Example Frontend App",
"author": "lukaVarga",
"private": true,
"main": "index.js",
"scripts": {
"dev": "NUXT_ENV_GIT_VERSION=$(git describe --tags) nuxt dev --mode development --port 8080",
"build:production": "NUXT_ENV_GIT_VERSION=$(git describe --tags) nuxt build --mode production",
"build:development": "NUXT_ENV_GIT_VERSION=$(git describe --tags) nuxt build --mode development",
"start": "nuxt start",
"sls:create:staging": "NODE_ENV=staging npm run build:production && NODE_ENV=staging serverless create_domain --stage staging && NODE_ENV=staging serverless deploy --stage staging",
"sls:create:production": "NODE_ENV=prod npm run build:production && NODE_ENV=prod serverless create_domain --stage prod && NODE_ENV=prod serverless deploy --stage prod",
"sls:delete": "sls remove && sls delete_domain",
"sls:deploy:staging": "NODE_ENV=staging npm run build:production && NODE_ENV=staging serverless deploy --stage staging",
"sls:deploy:production": "NODE_ENV=prod npm run build:production && NODE_ENV=prod serverless deploy --stage prod",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukaVarga/nuxt-serverless-ts-issue.git"
},
"dependencies": {
"@nuxtjs/axios": "^5.4.1",
"@nuxtjs/dotenv": "^1.3.0",
"@nuxtjs/proxy": "^1.3.3",
"@nuxtjs/style-resources": "^0.1.2",
"@nuxtjs/vuetify": "^0.5.5",
"cookie-parser": "^1.4.4",
"express": "^4.16.4",
"js-cookie": "^2.2.0",
"moment": "^2.24.0",
"nuxt": "^2.6.1",
"nuxt-i18n": "^5.8.5",
"nuxt-property-decorator": "^2.1.3",
"rxjs": "^6.4.0",
"serverless-apigw-binary": "^0.4.4",
"serverless-dotenv-plugin": "^2.0.1",
"serverless-http": "^1.9.1",
"ts-node": "^8.0.3",
"vee-validate": "^2.2.0",
"vue-country-flag": "^1.1.0",
"vue-tel-input": "^2.0.18",
"vuetify-loader": "^1.2.1",
"vuex-class": "^0.3.1",
"vuex-persistedstate": "^2.5.4",
"vuex-shared-mutations": "^1.0.2"
},
"devDependencies": {
"@nuxt/typescript": "^2.6.1",
"@types/node": "^11.11.3",
"bourbon": "https://github.com/thoughtbot/bourbon#541285d30aca24688484872a9709ec946769c27f",
"css-loader": "^2.1.1",
"node-sass": "^4.11.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"serverless": "^1.40.0",
"serverless-domain-manager": "^2.6.13",
"serverless-s3-sync": "^1.7.3",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2"
}
}