-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
96 lines (96 loc) · 2.64 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
88
89
90
91
92
93
94
95
96
{
"name": "react-rest-playground",
"version": "0.1.12",
"description": "Rest Client Playground using React",
"unpkg": "dist/index.js",
"jsdelivr": "dist/index.js",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "webpack serve --mode development",
"clean": "rm -rf node_modules",
"build:app": "webpack --mode production --progress",
"build": "babel src -d dist --copy-files",
"build:declaration": "npx -p typescript tsc src/**/*.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"lint": "npx eslint --fix .",
"format": "npx prettier --check src/**/*.js",
"pre-commit": "lint-staged",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [
"react",
"components",
"postman-like-tool",
"rest-playground"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ramsunvtech/react-rest-playground"
},
"author": {
"name": "Venkat.R",
"url": "https://www.linkedin.com/in/venkat-engineering-manager/"
},
"contributors": [
"Yogesh <[email protected]>",
"Yuvaraj Ravi <[email protected]>"
],
"license": "MIT",
"dependencies": {
"axios": "^0.24.0",
"prop-types": "^15.8.0",
"qs": "^6.10.2",
"react-ace": "^9.5.0",
"react-hook-form": "^7.22.5",
"styled-components": "^5.3.3"
},
"peerDependencies": {
"react": ">= 16.8",
"react-dom": "*"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/react": "^6.4.9",
"@svgr/webpack": "^6.1.2",
"babel-loader": "^8.2.3",
"babel-plugin-module-resolver": "^4.1.0",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.5.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.1"
},
"engines": {
"node": ">= 10"
},
"browserslist": [
"defaults"
],
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
}
}