forked from react-static/react-static
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 798 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 798 Bytes
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
{
"name": "react-static-plugin-source-filesystem",
"version": "7.1.0",
"description": "A React-Static plugin that adds support for creating routes from a directory",
"main": "node.api.js",
"repository": "https://github.com/nozzle/react-static.git",
"author": "Tanner Linsley <tannerlinsley@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "babel src --out-dir .",
"watch": "yarn build --watch",
"test": "yarn format",
"format": "prettier src/**/*.js --write",
"preversion": "yarn build"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3"
},
"dependencies": {
"chokidar": "^2.1.5",
"glob": "^7.1.3"
},
"peerDependencies": {
"react-static": "^7"
}
}