-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
98 lines (98 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "ledgy-landing-page",
"description": "Ledgy Landing Page",
"version": "1.0.0",
"author": "Ledgy AG <contact@ledgy.com>",
"repository": "morloy/ledgy-app",
"dependencies": {
"@babel/core": "7.0.0-rc.1",
"@babel/preset-env": "7.0.0-rc.1",
"@babel/preset-flow": "7.0.0-rc.1",
"@babel/preset-react": "7.0.0-rc.1",
"@lingui/react": "2.4.1",
"aos": "2.3.3",
"bootstrap": "4.1.2",
"et-line": "1.0.1",
"font-awesome": "4.7.0",
"freshchat-widget": "1.0.4",
"gatsby": "1.9.277",
"gatsby-image": "1.0.55",
"gatsby-link": "1.6.46",
"gatsby-plugin-google-tagmanager": "1.0.19",
"gatsby-plugin-manifest": "1.0.27",
"gatsby-plugin-netlify": "1.0.21",
"gatsby-plugin-nprogress": "1.0.14",
"gatsby-plugin-offline": "1.0.18",
"gatsby-plugin-react-helmet": "2.0.11",
"gatsby-plugin-react-next": "1.0.11",
"gatsby-plugin-sass": "1.0.26",
"gatsby-plugin-sharp": "1.6.48",
"gatsby-plugin-sitemap": "1.2.25",
"gatsby-source-filesystem": "1.5.39",
"gatsby-transformer-sharp": "1.6.27",
"jquery": "3.3.1",
"lity": "2.3.1",
"lodash": "4.17.10",
"popper.js": "1.14.4",
"react": "16.4.2",
"react-dom": "16.4.2",
"react-helmet": "5.2.0",
"slick-carousel": "1.8.1"
},
"keywords": [
"ledgy"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"test": "eslint . --ext jsx,js && flow",
"extract": "BABEL_ENV=extract lingui extract --clean && i18next-conv -l de -s src/locale/de/messages.json -t src/locale/de.po"
},
"eslintConfig": {
"extends": [
"plugin:flowtype/recommended",
"airbnb"
],
"plugins": [
"flowtype"
],
"env": {
"browser": true
},
"rules": {
"object-curly-newline": [
"error",
{
"multiline": true
}
]
}
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.0.0-rc.1",
"@lingui/babel-preset-react": "2.4.1",
"@lingui/cli": "2.4.1",
"babel-eslint": "8.2.6",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-flowtype": "2.50.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.10.0",
"flow-bin": "0.78.0",
"i18next-conv": "6.0.1"
},
"lingui": {
"fallbackLocale": "en",
"sourceLocale": "en",
"localeDir": "src/locale",
"srcPathDirs": [
"src/pages",
"src/components",
"src/layouts"
],
"format": "minimal"
}
}