-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "diaporama",
"version": "1.0.0",
"description": "Turn Youtube videos into scrollable caption-based slideshows",
"author": "Nico Prat <[email protected]>",
"private": true,
"scripts": {
"dev": "HOST=0.0.0.0 node --inspect node_modules/.bin/nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "RELEASE=$(git rev-parse HEAD) nuxt generate && rm dist/**/*.map",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"start:lambda": "netlify-lambda serve src/lambda",
"build:lambda": "netlify-lambda build src/lambda"
},
"dependencies": {
"@bugsnag/js": "^5.0.2",
"@bugsnag/plugin-vue": "^5.0.2",
"@nuxtjs/dotenv": "^1.3.0",
"cachios": "^2.0.0",
"get-youtube-id": "^1.0.0",
"normalize.css": "^8.0.1",
"nuxt": "^2.0.0",
"scrollmagic": "^2.0.6",
"v-hotkey": "^0.3.0",
"vuex-persistedstate": "^2.5.4",
"youtube-captions-scraper": "^1.0.3",
"youtube.get-video-info": "^1.0.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^4.19.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^4.0.0",
"netlify-lambda": "^1.0.3",
"node-sass": "^4.10.0",
"postcss-easing-gradients": "^3.0.1",
"sass-loader": "^7.1.0",
"webpack-bugsnag-plugins": "^1.2.3"
}
}