-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.82 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
{
"name": "@cs125/gatsby-source-filesystem-frontmatter",
"version": "2.1.40-rc14",
"description": "Gatsby plugin which parses files within a directory for further parsing by other plugins, while also parsing YAML front matter from all files",
"keywords": [
"gatsby",
"gatsby-plugin"
],
"author": "Kyle Mathews <[email protected]>",
"contributors": [
"Geoffrey Challen <[email protected]>"
],
"scripts": {
"start": "preview && concurrently -n gatsby,babel --handle-input \"nodemon\" \"npm run watch\"",
"test": "jest plugins/@cs125/gatsby-source-filesystem-frontmatter",
"build": "rm -rf dist && babel plugins/@cs125/gatsby-source-filesystem-frontmatter --out-dir dist --ignore **/__tests__ && cp plugins/@cs125/gatsby-source-filesystem-frontmatter/types/index.d.ts dist/ && cp package.json dist/package.json",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w plugins/@cs125/gatsby-source-filesystem-frontmatter --out-dir dist --ignore **/__tests__",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"develop": "preview && gatsby develop",
"clean": "gatsby clean",
"postinstall": "copyfiles dist/* ."
},
"dependencies": {
"better-queue": "^3.8.10",
"bluebird": "^3.7.2",
"chokidar": "3.3.1",
"copyfiles": "^2.3.0",
"file-type": "^13.1.2",
"fs-extra": "^8.1.0",
"gatsby-core-utils": "^1.0.26",
"got": "^10.2.2",
"gray-matter": "^4.0.2",
"md5-file": "^4.0.0",
"mime": "^2.4.4",
"pretty-bytes": "^5.3.0",
"progress": "^2.0.3",
"read-chunk": "^3.2.0",
"valid-url": "^1.0.9",
"xstate": "^4.7.6"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/runtime": "^7.8.3",
"babel-preset-gatsby": "^0.2.27",
"babel-preset-gatsby-package": "^0.2.15",
"concurrently": "^5.0.2",
"cross-env": "^6.0.3",
"gatsby": "^2.19.3",
"gatsby-cli": "^2.8.27",
"gatsby-transformer-asciidoc": "^1.1.22",
"jest": "^25.1.0",
"nodemon": "2.0.2",
"package-preview": "^3.0.0",
"pnpm": "^4.8.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"peerDependencies": {
"gatsby": "^2.19.3"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"homepage": "https://github.com/cs125-illinois/gatsby-source-filesystem-frontmatter",
"repository": {
"type": "git",
"url": "https://github.com/cs125-illinois/gatsby-source-filesystem-frontmatter.git"
},
"bugs": {
"url": "https://github.com/cs125-illinois/gatsby-source-filesystem-frontmatter/issues"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"nodemonConfig": {
"watch": [
"package.json",
"package-lock.json",
"gatsby-config.js",
"gatsby-node.js"
],
"exec": "gatsby develop"
}
}