-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
97 lines (97 loc) · 3.38 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
{
"name": "pub",
"version": "1.9.0",
"private": true,
"scripts": {
"build": "gatsby build --prefix-paths",
"clean": "gatsby clean",
"dev": "GATSBY_ACTIVE_ENV=development gatsby develop --open",
"dev:m": "gatsby develop -H 0.0.0.0 -p 8000 --open",
"format": "prettier --write \"{,!(node_modules|public|coverage|.cache)/**/}*.{json,md}\"",
"format:precommit": "prettier --write",
"lint": "eslint --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx",
"lint:fix": "eslint --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx --fix",
"start": "gatsby serve --open",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"typecheck": "tsc"
},
"dependencies": {
"@types/lodash": "^4.14.149",
"gatsby": "2.24.47",
"gatsby-cli": "^3.0.0",
"gatsby-image": "2.3.2",
"gatsby-plugin-alias-imports": "1.0.5",
"gatsby-plugin-canonical-urls": "2.2.1",
"gatsby-plugin-catch-links": "2.2.1",
"gatsby-plugin-create-client-paths": "2.2.1",
"gatsby-plugin-google-analytics": "2.2.2",
"gatsby-plugin-mailchimp": "5.1.2",
"gatsby-plugin-manifest": "2.3.3",
"gatsby-plugin-offline": "3.1.2",
"gatsby-plugin-react-helmet": "3.2.2",
"gatsby-plugin-robots-txt": "^1.5.1",
"gatsby-plugin-sharp": "2.5.4",
"gatsby-plugin-sitemap": "2.3.2",
"gatsby-plugin-styled-components": "3.2.1",
"gatsby-plugin-typescript": "2.3.1",
"gatsby-plugin-typography": "2.4.1",
"gatsby-remark-autolink-headers": "2.2.1",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "3.2.2",
"gatsby-remark-prismjs": "3.4.1",
"gatsby-remark-responsive-iframe": "2.3.1",
"gatsby-source-filesystem": "2.2.2",
"gatsby-transformer-remark": "2.7.1",
"gatsby-transformer-sharp": "2.4.4",
"gatsby-transformer-yaml": "2.3.1",
"lodash": "^4.17.19",
"markdown-it": "^11.0.0",
"prismjs": "^1.23.0",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-aria-offcanvas": "1.4.2",
"react-dom": "16.13.1",
"react-helmet": "6.0.0",
"react-select": "3.1.0",
"react-slick": "0.25.2",
"react-typography": "0.16.19",
"styled-components": "5.1.0",
"typography": "0.16.19",
"typography-theme-ocean-beach": "0.16.19"
},
"devDependencies": {
"@ruj/prettier-config": "1.0.0",
"@testing-library/jest-dom": "5.5.0",
"@testing-library/react": "10.0.2",
"@types/jest": "25.2.1",
"@types/markdown-it": "^10.0.2",
"@types/node": "13.11.1",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.6",
"@types/react-helmet": "5.0.15",
"@types/react-select": "3.0.11",
"@types/react-slick": "0.23.4",
"@types/styled-components": "5.1.0",
"@types/typography": "0.16.3",
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.28.0",
"babel-jest": "25.3.0",
"babel-plugin-styled-components": "1.10.7",
"babel-preset-gatsby": "0.3.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"husky": "4.2.5",
"identity-obj-proxy": "3.0.0",
"jest": "25.3.0",
"lint-staged": "10.1.3",
"prettier": "2.0.4",
"react-is": "16.13.1",
"react-test-renderer": "16.13.1",
"typescript": "3.8.3"
}
}