-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 974 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 974 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "react-rest-dom",
"description": "Library that allows you to consume Rest APIs through the React DOM.",
"version": "0.1.1",
"author": "Sammwy <sammwy.dev@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "rimraf dist && cross-env NODE_ENV=production babel src --out-dir dist --copy-files"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/sammwyy/react-rest-dom"
},
"keywords": [
"react",
"api",
"client",
"rest",
"react-dom",
"reactjs",
"rest-api",
"restful",
"api-client",
"api-rest",
"restful-api",
"rest-client",
"react-api",
"react-rest"
]
}