forked from binary-com/deriv-com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.94 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "deriv-com",
"description": "Deriv.com static content",
"version": "0.1.0",
"author": "Deriv",
"dependencies": {
"@artsy/fresnel": "^3.2.1",
"@directus/gatsby-source-directus": "^9.4.2",
"@livechat/customer-sdk": "^3.1.0",
"@loadable/component": "^5.15.2",
"@svgr/webpack": "^6.1.2",
"commander": "^8.3.0",
"crc-32": "^1.2.0",
"embla-carousel-react": "^6.0.2",
"eslint-import-resolver-node": "^0.3.6",
"extend": "^3.0.2",
"formik": "^2.2.9",
"gatsby": "^4.4.0",
"gatsby-background-image": "^1.6.0",
"gatsby-plugin-anchor-links": "^1.2.1",
"gatsby-plugin-google-tagmanager": "^4.4.0",
"gatsby-plugin-image": "^2.4.0",
"gatsby-plugin-manifest": "^4.4.0",
"gatsby-plugin-nprogress": "^4.4.0",
"gatsby-plugin-page-progress": "^2.2.1",
"gatsby-plugin-react-helmet": "^5.4.0",
"gatsby-plugin-robots-txt": "^1.6.14",
"gatsby-plugin-sharp": "^4.4.0",
"gatsby-plugin-sitemap": "^5.4.0",
"gatsby-plugin-preact": "^6.5.0",
"gatsby-plugin-svgr": "^3.0.0-beta.0",
"gatsby-plugin-use-query-params": "^1.0.1",
"gatsby-source-filesystem": "^4.4.0",
"gatsby-transformer-sharp": "^4.4.0",
"gbimage-bridge": "^0.2.1",
"i18next": "^21.6.5",
"js-cookie": "^2.2.1",
"lottie-web": "^5.8.1",
"match-sorter": "^6.3.1",
"nprogress": "^0.2.0",
"postcss": "^8.4.5",
"preact": "^10.6.4",
"preact-render-to-string": "^5.1.19",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-i18next": "^11.15.3",
"react-is": "^17.0.2",
"react-perfect-scrollbar": "^1.5.8",
"use-query-params": "^1.2.3",
"web-push-notifications": "^3.23.1",
"webpack": "^5.65.0"
},
"devDependencies": {
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/react": "^6.4.9",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.19",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"babel-eslint": "10.1.0",
"babel-plugin-styled-components": "^2.0.2",
"eslint": "^7.32.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.28.0",
"eslint-webpack-plugin": "^3.1.1",
"gatsby-plugin-eslint": "^4.0.2",
"gatsby-plugin-styled-components": "^5.4.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"lint-staged": "^12.1.5",
"npm-force-resolutions": "0.0.10",
"prettier": "^2.5.1",
"query-string": "^7.0.1",
"styled-components": "^5.3.3",
"stylelint": "^14.2.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"stylelint-webpack-plugin": "^3.1.0",
"typescript": "^4.5.4"
},
"keywords": [
"deriv",
"static"
],
"license": "Apache License 2.0",
"scripts": {
"build": "gatsby build --log-pages",
"develop": "gatsby develop -o",
"format": "prettier --write '**/*.js' '*.js'",
"stylelint": "stylelint 'src/**/*.js' --formatter verbose",
"eslint": "DEBUG=eslint:cli-engine eslint {'src/**/*.{js,jsx,ts,tsx}','./*.js'} --fix",
"start": "npm run develop",
"start-80": "sudo gatsby develop -p 80",
"serve": "gatsby serve",
"test": "npm run eslint && npm run stylelint",
"translate:download": "crowdin download -b crowdin && crowdin download -b crowdin -l zh-CN",
"translate:extract": "cd scripts && node extract-translations.js && cd ..",
"translate:upload": "crowdin upload sources -b crowdin",
"deploy": "npm run build && gh-pages -d public -b master",
"deploy-dev": "npm run build && gh-pages -d public",
"deploy-branch": "PATH_PREFIX=/deriv-com/br/$branch_name npm run build && gh-pages -d public -e br/$branch_name",
"prepare": "husky install",
"pre-commit-lint": "lint-staged",
"type-check": "tsc --noEmit",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook -c .storybook -o public/storybook"
},
"repository": {
"type": "git",
"url": "https://github.com/binary-com/deriv-com"
},
"bugs": {
"url": "https://github.com/binary-com/deriv-com/issues"
},
"engines": {
"npm": ">=6.9.0"
}
}