forked from stellar/new-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.52 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
{
"name": "stellar.org",
"private": true,
"version": "0.0.0",
"scripts": {
"start": "gatsby develop",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"test": "jest",
"build": "gatsby build",
"clean": "gatsby clean",
"check-not-master": "[ \"$(git rev-parse --abbrev-ref HEAD)\" = \"master\" ] && echo \"\\033[31mDon't commit to master\" && exit 1 || exit 0",
"prod:build": "cross-env TAG=new-docs:localbuild AMPLITUDE_KEY=$AMPLITUDE_KEY make docker-build",
"prod:serve": "docker run -p 8000:80 new-docs:localbuild",
"production": "yarn prod:build && yarn prod:serve"
},
"husky": {
"hooks": {
"pre-commit": "concurrently 'yarn check-not-master' 'pretty-quick --staged'"
}
},
"dependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@mdx-js/mdx": "^1.6.1",
"@mdx-js/react": "^1.6.1",
"@mdx-js/tag": "^0.20.3",
"@reach/router": "^1.2.1",
"@sentry/browser": "^5.21.4",
"@stellar/eslint-config": "^1.0.5",
"@stellar/prettier-config": "^1.0.1",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.x",
"babel-jest": "^26.3.0",
"babel-plugin-macros": "^2.5.1",
"babel-plugin-styled-components": "^1.10.0",
"babel-preset-gatsby": "^0.5.6",
"concurrently": "^5.3.0",
"core-js": "3.6.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "7.7.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-react-app": "^5.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.0",
"execa": "^4.0.3",
"fetch-jsonp": "^1.1.3",
"gatsby": "^2.24.49",
"gatsby-image": "^2.4.16",
"gatsby-link": "^2.4.8",
"gatsby-plugin-eslint": "^2.0.8",
"gatsby-plugin-mdx": "^1.2.35",
"gatsby-plugin-react-helmet": "^3.3.6",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sharp": "^2.6.28",
"gatsby-plugin-sitemap": "^2.4.12",
"gatsby-plugin-styled-components": "^3.3.6",
"gatsby-react-router-scroll": "^3.0.7",
"gatsby-remark-images": "^3.3.26",
"gatsby-remark-mermaid": "^2.0.0",
"gatsby-remark-smartypants": "^2.3.6",
"gatsby-source-filesystem": "^2.3.25",
"gatsby-transformer-remark": "^2.8.29",
"gatsby-transformer-sharp": "^2.5.13",
"gsap": "^3.5.0",
"hast-to-hyperscript": "^9.0.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"lodash": "^4.17.20",
"prettier": "^2.1.0",
"pretty-quick": "^3.0.0",
"prismjs": "^1.21.0",
"prop-types": "^15.7.2",
"puppeteer": "^10.0.0",
"qs": "6.9.4",
"react": "^16.12.0",
"react-collapse": "^5.0.1",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.8.6",
"react-helmet": "^6.1.0",
"react-test-renderer": "^16.12.0",
"react-transition-group": "^4.3.0",
"sharp": "^0.29.3",
"stellar-sdk": "^8.2.3",
"styled-components": "^5.1.1",
"styled-normalize": "^8.0.6",
"tinycolor2": "^1.4.1",
"url": "^0.11.0",
"whatwg-fetch": "^3.4.0"
},
"homepage": "https://stellar.org",
"license": "MIT"
}