forked from binary-com/derivcrypto-com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.63 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
{
"name": "derivcrypto",
"private": true,
"description": "Derivcrypto landing pages",
"version": "0.1.0",
"license": "Apache License 2.0",
"keywords": [
"deriv",
"derivcrypto"
],
"scripts": {
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"clean": "gatsby clean",
"develop": "gatsby develop",
"eslint": "DEBUG=eslint:cli-engine eslint 'src/**/*.js' --fix",
"format": "prettier --write \"**/*.{js,json}\" \"*.js\"",
"serve": "gatsby serve",
"start": "npm run develop",
"translate:download": "crowdin download -b crowdin && crowdin download -b crowdin -l ach",
"translate:extract": "cd scripts && node extract-translations.js && cd ..",
"translate:upload": "crowdin upload sources -b crowdin"
},
"dependencies": {
"@artsy/fresnel": "^1.2.2",
"@svgr/webpack": "^5.4.0",
"babel-plugin-styled-components": "^1.11.1",
"commander": "^6.1.0",
"crc-32": "^1.2.0",
"default-passive-events": "^2.0.0",
"embla-carousel": "^4.0.5",
"formik": "^2.1.7",
"gatsby": "^2.24.67",
"gatsby-background-image": "^1.1.2",
"gatsby-image": "^2.4.20",
"gatsby-plugin-manifest": "^2.4.33",
"gatsby-plugin-react-helmet": "^3.3.12",
"gatsby-plugin-robots-txt": "^1.5.3",
"gatsby-plugin-sharp": "^2.6.38",
"gatsby-plugin-sitemap": "^2.4.14",
"gatsby-plugin-styled-components": "^3.3.12",
"gatsby-plugin-svgr": "^2.0.2",
"gatsby-plugin-webfonts": "^1.1.3",
"gatsby-source-filesystem": "^2.3.32",
"gatsby-transformer-sharp": "^2.5.16",
"i18next": "^19.8.1",
"js-cookie": "^2.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-i18next": "^11.7.3",
"react-simple-snackbar": "^1.1.10",
"styled-components": "^5.2.0",
"styled-system": "^5.1.5"
},
"devDependencies": {
"eslint-config-react-app": "^5.2.1",
"gatsby-plugin-eslint": "^2.0.8",
"gatsby-plugin-stylelint": "^3.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "2.1.2",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"stylelint-webpack-plugin": "^2.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/binary-com/derivcrypto-com"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix",
"stylelint --formatter verbose",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}