-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.52 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
{
"name": "storybook-mock-rest",
"version": "1.2.2",
"description": "Manage and mock your endpoints via Storybook panel",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"build": "yarn build:types && yarn build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "jest && babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"build:js-no-test": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"start:server": "yarn build:js && node ./dist/server.js",
"prepublish": "yarn type-check && yarn build",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
},
"keywords": [
"mock",
"axios",
"storybook",
"rest"
],
"author": "Murat Çatal <muratcatal@outlook.com>",
"bugs": {
"url": "https://github.com/muratcatal/storybook-mock-rest/issues"
},
"homepage": "https://github.com/muratcatal/storybook-mock-rest",
"repository": {
"type": "git",
"url": "https://github.com/muratcatal/storybook-mock-rest.git"
},
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/app-root-path": "^1.2.4",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/faker": "^4.1.9",
"@types/jest": "^24.0.14",
"@types/react": "^16.9.50",
"babel-jest": "^26.3.0",
"jest": "^26.4.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "^4.0.3"
},
"files": [
"dist/**/*",
"docs/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"dependencies": {
"@babel/runtime": "^7.11.2",
"@emotion/styled": "^10.0.27",
"@storybook/addons": "^5.3.9",
"@storybook/components": "^5.3.9",
"ace-builds": "^1.4.8",
"app-root-path": "^3.0.0",
"axios": "^0.19.2",
"axios-mock-adapter": "^1.17.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"decache": "^4.5.1",
"emotion": "^10.0.27",
"express": "^4.17.1",
"faker": "^4.1.0",
"node-run-cmd": "^1.0.1",
"react-ace": "^8.0.0"
},
"peerDependencies": {}
}