-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.97 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
{
"name": "ueno-gatsby-starter",
"description": "Opinionated Gatsby starter by Ueno",
"version": "1.0.0",
"main": "noop",
"license": "MIT",
"contributors": [
"Birkir Gudjonsson <birkir.gudjonsson@gmail.com>",
"Jérémy Barbet <jeremgraph@gmail.com>"
],
"scripts": {
"start": "gatsby serve --port ${PORT:-3000}",
"build": "gatsby build",
"clean": "rimraf .cache public",
"lint": "npm run tslint && npm run stylelint",
"tslint": "tslint --fix 'src/**/*.{ts,tsx}' -p .",
"stylelint": "stylelint 'src/**/*.scss' --syntax scss",
"dev": "gatsby develop",
"webvtt-to-json": "node ./src/utils/webvtt-to-json"
},
"dependencies": {
"gatsby": "2.0.91",
"gatsby-image": "2.0.26",
"gatsby-plugin-config": "1.0.7",
"gatsby-plugin-google-analytics": "2.0.13",
"gatsby-plugin-layout": "1.0.11",
"gatsby-plugin-manifest": "2.0.13",
"gatsby-plugin-react-helmet": "3.0.5",
"gatsby-plugin-react-svg": "2.0.0",
"gatsby-plugin-sharp": "2.0.17",
"gatsby-plugin-typescript": "2.0.3",
"gatsby-plugin-ueno": "2.0.1",
"gatsby-source-graphql-universal": "^2.0.4",
"gatsby-transformer-sharp": "2.1.10",
"gsap": "2.1.1",
"gsap-tools": "1.0.9",
"lodash": "4.17.11",
"react": "16.8.0-alpha.0",
"react-dom": "16.8.0-alpha.0",
"react-helmet": "5.2.0",
"react-input-range": "1.3.0",
"vtt-to-json": "^0.1.1"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@types/gsap": "1.20.1",
"@types/lodash": "4.14.119",
"@types/node": "10.12.18",
"@types/react-dom": "16.0.11",
"@types/react-helmet": "5.0.8",
"@ueno/stylelint-config": "1.1.2",
"@ueno/tslint-config": "1.0.4",
"rimraf": "2.6.3",
"stylelint": "9.9.0",
"tslint": "5.12.1",
"tslint-react": "3.6.0",
"typescript": "3.2.2"
},
"keywords": [
"gatsby",
"gatsby-starter",
"ueno"
],
"repository": {
"type": "git",
"url": "https://github.com/ueno-llc/ueno-gatsby-starter"
}
}