-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
128 lines (128 loc) · 4.93 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
{
"name": "sinbad-dev",
"description": "Sinbad static content",
"version": "0.1.0",
"author": "Sinbad Software",
"dependencies": {
"@loadable/component": "^5.15.2",
"@svgr/webpack": "^6.1.2",
"commander": "^8.3.0",
"crc-32": "^1.2.0",
"eslint-import-resolver-node": "^0.3.6",
"extend": "^3.0.2",
"gatsby": "^4.16.0",
"gatsby-background-image": "^1.6.0",
"gatsby-plugin-anchor-links": "^1.2.1",
"gatsby-plugin-image": "^2.16.1",
"gatsby-plugin-manifest": "^4.16.0",
"gatsby-plugin-page-progress": "^2.2.1",
"gatsby-plugin-preact": "^6.16.0",
"gatsby-plugin-react-helmet": "^5.16.0",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-robots-txt": "^1.7.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-plugin-sitemap": "^5.9.0",
"gatsby-plugin-svgr": "^3.0.0-beta.0",
"gatsby-plugin-use-query-params": "^1.0.1",
"gatsby-source-filesystem": "^4.16.0",
"gatsby-transformer-json": "^4.17.0",
"gatsby-transformer-sharp": "^4.16.0",
"gbimage-bridge": "^0.2.1",
"i18next": "^21.6.5",
"js-cookie": "^2.2.1",
"match-sorter": "^6.3.1",
"postcss": "^8.4.5",
"preact": "^10.8.0",
"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-paginate": "^8.1.0",
"react-perfect-scrollbar": "^1.5.8",
"react-ticker": "^1.3.1",
"use-query-params": "^1.2.3",
"web-push-notifications": "^3.33.0",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.4.5",
"@graphql-codegen/typescript-operations": "^2.3.2",
"@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",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.25",
"@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.16.0",
"gh-pages": "^5.0.0",
"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_CPU_COUNT=2 gatsby build --log-pages",
"develop": "GATSBY_CPU_COUNT=2 gatsby develop -o -p 8800",
"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",
"deploy": "npm run build && gh-pages -d public -b master",
"deploy-dev": "npm run build && gh-pages -d public",
"deploy-branch": "gatsby clean && PATH_PREFIX=sinbad/br/$npm_config_branch gatsby build --prefix-paths && gh-pages -d public -e br/$npm_config_branch",
"prepare": "husky install",
"pre-commit-lint": "lint-staged",
"type-check": "tsc --noEmit",
"codegen": "graphql-codegen --config codegen.yml",
"codegen:watch": "graphql-codegen --config codegen.yml --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/binary-com/sinbad"
},
"bugs": {
"url": "https://github.com/binary-com/sinbad/issues"
},
"engines": {
"npm": ">=6.9.0"
}
}