This repository was archived by the owner on Mar 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.22 KB
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
{
"name": "react-static-plugin-include-external-path",
"version": "1.0.2",
"description": "A React-Static plugin that adds external path support for webpack imports",
"main": "node.api.js",
"private": false,
"scripts": {
"build": "babel src --out-dir .",
"watch": "yarn build --watch",
"test": "yarn format",
"format": "prettier src/**/*.js --write",
"preversion": "yarn build",
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"react-static": "^7.2.2"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"react-static": "^7.2.2",
"prettier": "^1.18.2"
},
"dependencies": {
"chokidar": "^3.0.2",
"glob": "^7.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henry-young/react-static-plugin-include-external-path.git"
},
"author": "Henry Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/henry-young/react-static-plugin-include-external-path/issues"
},
"homepage": "https://github.com/henry-young/react-static-plugin-include-external-path#readme",
"keywords": ["react", "react-static", "react-static-plugin", "plugin", "monorepo", "external"]
}