-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
89 lines (89 loc) · 2.88 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
{
"author": "Nicholas Jamieson <nicholas@cartant.com>",
"bugs": {
"url": "https://github.com/cartant/rxjs-xyz/issues"
},
"dependencies": {
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"cpy-cli": "^3.0.0",
"gatsby": "^2.18.4",
"gatsby-image": "^2.2.34",
"gatsby-plugin-emotion": "^4.1.16",
"gatsby-plugin-feed": "^2.5.5",
"gatsby-plugin-google-analytics": "^2.1.29",
"gatsby-plugin-lunr": "^1.5.2",
"gatsby-plugin-manifest": "^2.2.30",
"gatsby-plugin-offline": "^3.0.24",
"gatsby-plugin-react-helmet": "^3.1.16",
"gatsby-plugin-sharp": "^2.3.4",
"gatsby-plugin-sitemap": "^2.3.6",
"gatsby-plugin-twitter": "^2.1.17",
"gatsby-plugin-typography": "^2.3.18",
"gatsby-remark-autolink-headers": "^2.2.1",
"gatsby-remark-copy-linked-files": "^2.1.31",
"gatsby-remark-embedder": "^2.0.0",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^3.1.34",
"gatsby-remark-numbered-footnotes": "^1.0.1",
"gatsby-remark-prismjs": "^3.3.25",
"gatsby-remark-responsive-iframe": "^2.2.28",
"gatsby-remark-smartypants": "^2.1.17",
"gatsby-source-filesystem": "^2.1.39",
"gatsby-transformer-remark": "^2.7.5",
"gatsby-transformer-sharp": "^2.3.6",
"husky": "^4.0.0",
"lint-staged": "^10.0.8",
"prettier": "^2.0.0",
"prismjs": "^1.17.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-typography": "^0.16.19",
"react-use": "^15.1.0",
"remark-cli": "^7.0.1",
"remark-lint": "^6.0.5",
"remark-lint-fenced-code-flag": "^1.0.3",
"typeface-merriweather": "^0.0.72",
"typeface-montserrat": "^0.0.75",
"typography": "^0.16.19",
"typography-theme-wordpress-2016": "^0.16.19"
},
"description": "RxJS community packages",
"devDependencies": {},
"homepage": "https://rxjs-xyz",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [],
"license": "All Rights Reserved",
"lint-staged": {
"*.{js,jsx,json}": "prettier --write",
"*.md": [
"prettier --config ./.prettierrc-md --write",
"remark"
]
},
"main": "none",
"name": "rxjs-xyz",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/cartant/rxjs-xyz.git"
},
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
"deploy": "vercel --prod",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json}\" && prettier --config ./.prettierrc-md --write \"**/*.md\"",
"lint": "prettier --check \"**/*.{js,jsx,json}\" && prettier --config ./.prettierrc-md --check \"**/*.md\" && remark \"content/packages/**/*.md\"",
"now-build": "gatsby build",
"start": "yarn develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"version": "0.0.0"
}