-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.14 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
{
"name": "mockitjs",
"version": "0.5.0",
"description": "Http API mock for frontend development",
"scripts": {
"test": "mocha test/*.spec.js",
"build": "webpack --config ./client/webpack.config.js --mode=production",
"dev": "webpack serve --config ./client/webpack.config.js --mode=development --open=true"
},
"main": "./src/plugin.js",
"types": "mockit.d.ts",
"bin": {
"mockit": "cli"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/seancheung/mockit.git"
},
"keywords": [
"http",
"mock",
"fake",
"rest"
],
"author": "seancheung <[email protected]> (https://seanz.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/seancheung/mockit/issues"
},
"homepage": "https://github.com/seancheung/mockit#readme",
"dependencies": {
"body-parser": "^1.19.0",
"chokidar": "^3.4.3",
"express": "^4.17.1",
"express-request-proxy": "^2.2.2",
"faker": "^5.1.0",
"js-yaml": "^3.14.0",
"mockit-express": "^0.5.0",
"morgan": "^1.10.0",
"opener": "^1.5.2",
"yargs-parser": "^20.2.3"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"axios": "^0.21.0",
"babel-loader": "^8.1.0",
"brace": "^0.11.1",
"chai": "^4.2.0",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.13.0",
"eslint-plugin-react": "^7.21.5",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"mocha": "^8.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-ace": "^9.2.0",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.7",
"style-loader": "^2.0.0",
"supertest": "^6.0.1",
"typeface-roboto": "^1.1.13",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-middleware": "^4.0.0",
"webpack-dev-server": "^3.11.0"
}
}