-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
114 lines (114 loc) · 3.67 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
{
"name": "MYC_landing",
"private": true,
"description": "MyCrypto is a free, open-source interface for interacting with the blockchain.",
"version": "0.1.0",
"author": "MyCryptoHQ",
"engines": {
"node": ">= 12.x",
"npm": ">= 6.4.1",
"yarn": ">= 1.19.1"
},
"dependencies": {
"@mycrypto/ui": "0.23.0",
"@testing-library/react-hooks": "3.4.1",
"@types/react-slick": "0.23.4",
"axios": "0.21.1",
"gatsby": "3.0.0",
"gatsby-image": "2.4.20",
"gatsby-plugin-alias-imports": "1.0.5",
"gatsby-plugin-manifest": "2.4.33",
"gatsby-plugin-offline": "3.2.30",
"gatsby-plugin-react-helmet": "3.3.12",
"gatsby-plugin-sharp": "2.6.38",
"gatsby-plugin-sitemap": "2.4.14",
"gatsby-plugin-styled-components": "3.3.12",
"gatsby-plugin-typescript": "2.4.21",
"gatsby-remark-autolink-headers": "4.11.0",
"gatsby-remark-external-links": "0.0.4",
"gatsby-source-filesystem": "2.3.32",
"gatsby-transformer-remark": "2.15.0",
"gatsby-transformer-sharp": "2.5.16",
"jest-mock-axios": "4.2.1",
"normalize.css": "8.0.1",
"react": "16.9.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "16.9.0",
"react-helmet": "5.2.1",
"react-slick": "0.27.11",
"react-spring": "8.0.27",
"rebass": "4.0.7",
"slick-carousel": "1.8.1",
"styled-components": "5.2.0",
"styled-system": "5.1.5",
"typeface-lato": "0.0.75",
"typeface-roboto-mono": "0.0.75"
},
"devDependencies": {
"@testing-library/react": "^10.2.1",
"@testing-library/testcafe": "^4.2.0",
"@types/jest": "25.2.1",
"@types/react-dom": "16.9.6",
"@types/react-helmet": "5.0.15",
"@types/react-test-renderer": "16.9.2",
"@types/rebass": "4.0.5",
"@types/styled-components": "5.1.0",
"@types/styled-system": "5.1.10",
"@typescript-eslint/eslint-plugin": "4.14.0",
"@typescript-eslint/parser": "4.14.0",
"babel-jest": "25.4.0",
"babel-plugin-styled-components": "1.10.7",
"babel-preset-gatsby": "0.3.4",
"eslint": "6.4.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-testcafe": "^0.2.1",
"gatsby-plugin-layout": "^1.3.5",
"gatsby-plugin-react-svg": "3.0.0",
"husky": "4.2.5",
"identity-obj-proxy": "3.0.0",
"jest": "25.4.0",
"prettier": "1.18.2",
"pretty-quick": "2.0.1",
"react-test-renderer": "16.13.1",
"testcafe": "^1.8.7",
"typescript": "4.1.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"lint": "eslint --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx",
"lint:fix": "yarn lint --fix",
"build": "gatsby build",
"build:staging": "gatsby build --prefix-paths",
"develop": "gatsby develop --https",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "yarn develop",
"serve": "gatsby serve",
"test": "jest --passWithNoTests --config=./jest_config/jest.config.js",
"test:single": "yarn test --coverage=false --watch",
"test:e2e": "testcafe chrome:headless __tests__/*.test.js",
"test:e2e:dev": "testcafe \"chrome --start-maximized --disk-cache-size=1\" __tests__/*.test.js --live",
"tsc": "tsc -p ./tsconfig.json"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint && yarn tsc",
"pre-push": "yarn test"
}
},
"repository": {
"type": "git",
"url": "https://github.com/MyCryptoHQ/landing"
},
"bugs": {
"url": "https://github.com/MyCryptoHQ/landing/issues"
}
}