This repository has been archived by the owner on Oct 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.58 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
{
"name": "react-faker",
"version": "0.1.2",
"description": "Runtime mocking API for react component",
"main": "dist/index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "rm -rf dist/ && webpack -p --progress --config=webpack.production.config.js",
"bundle:analyze": "rm -rf dist/ && webpack -p --progress --config=webpack.bundle.config.js",
"lint": "eslint './src/**/*.js*'",
"test": "echo \"Error: no test specified\" && exit 1",
"ci": "npm run lint"
},
"author": "Farhad Yasir (nutboltu)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/nutboltu/react-faker.git"
},
"dependencies": {
"@babel/runtime": "^7.6.3",
"axios": "^0.21.1",
"mock-xmlhttprequest": "^5.1.0",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-draggable": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.9",
"prettier": "^1.18.2",
"webpack": "^4.41.1",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
}
}