-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.14 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
{
"name": "go-conference-2019-in-fukuoka-japan",
"fullname": "Go Conference'19 Summer in Fukuoka",
"version": "1.0.0",
"description": "Go and Enjoy Fukuoka ʕ⊙౪⚆ʔ",
"homepage": "https://fukuoka.gocon.jp",
"author": "linyows",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "npm run clean && bin/webp.js && nuxt build",
"clean": "rm -rf dist/*",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "tslint --project .",
"precommit": "npm run lint",
"test": "jest",
"ci": "npm i && nuxt build && npm run lint && npm audit",
"dist": "npm run build && npm run dist:rsync && npm run dist:assets",
"dist:rsync": "gsutil -m rsync -d -r dist gs://fukuoka.gocon.jp/",
"dist:assets": "gsutil setmeta -h 'Content-Type:image/png' -h 'Cache-Control:public, max-age=3600' -h 'Content-Disposition: attachment' gs://fukuoka.gocon.jp/download/*",
"install:gsutil": "curl https://sdk.cloud.google.com | bash && exec -l $SHELL && gcloud init"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/bulma": "^1.2.1",
"@nuxtjs/google-analytics": "^2.0.2",
"@nuxtjs/markdownit": "^1.2.4",
"@nuxtjs/pwa": "^3.0.0-beta.14",
"@types/koa": "^2.0.48",
"cross-env": "^5.2.0",
"koa": "^2.6.2",
"nuxt": "^2.6.2",
"nuxt-i18n": "^5.8.3",
"nuxt-property-decorator": "^2.1.3",
"package": "^1.0.1",
"pattern-wall": "^1.0.1",
"ts-loader": "^5.3.3",
"ts-node": "^8.1.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.4",
"vue-lazyload": "^1.2.6",
"vue-light-gallery": "^1.0.1",
"vue-parallax-js": "^0.2.3",
"vue-tweet-embed": "^2.3.0",
"vue2-google-maps": "^0.10.6",
"vuex-class": "^0.3.1",
"yaml-loader": "^0.5.0"
},
"devDependencies": {
"@nuxt/typescript": "^2.6.2",
"@nuxt/vue-app": "^2.5.1",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"imagemin-webp": "^5.0.0",
"jest": "^24.7.1",
"nodemon": "^1.18.9",
"nuxt-imagemin": "^1.0.0",
"tslint-config-standard": "^8.0.1",
"vue-jest": "^3.0.2"
}
}