-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
50 lines (50 loc) Β· 1.46 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
{
"name": "regex-for-regular-folk",
"version": "0.2.0",
"description": "A visual, example-based introduction to Regular Expressions",
"scripts": {
"alex": "alex chapters/*.mdx",
"lint-check": "prettier --check .",
"lint": "prettier --write .",
"test": "status=0; npm run lint-check || status=$?; exit $status",
"dev": "gatsby develop",
"build": "gatsby build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shreyasminocha/regex-for-regular-folk.git"
},
"keywords": [
"regex",
"book"
],
"author": "Shreyas Minocha",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/shreyasminocha/regex-for-regular-folk/issues"
},
"homepage": "https://github.com/shreyasminocha/regex-for-regular-folk#readme",
"devDependencies": {
"alex": "^8.1.1",
"prettier": "^2.0.5"
},
"dependencies": {
"@mdx-js/mdx": "^1.5.7",
"@mdx-js/react": "^1.5.7",
"gatsby": "^2.22.7",
"gatsby-plugin-dark-mode": "^1.1.2",
"gatsby-plugin-mdx": "^1.1.0",
"gatsby-plugin-sitemap": "^2.4.0",
"gatsby-remark-autolink-headers": "^2.2.0",
"gatsby-remark-smartypants": "^2.2.0",
"gatsby-source-filesystem": "^2.2.1",
"modern-normalize": "^0.6.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-syntax-highlighter": "^12.2.1",
"typeface-lato": "0.0.75",
"typeface-libre-baskerville": "0.0.72"
}
}