-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
128 lines (128 loc) · 3.7 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "openapi-mock-generator",
"version": "0.0.0-development",
"dependencies": {
"@contactlab/appy": "^3.0.0-0",
"@devexperts/remote-data-ts": "^2.0.3",
"@reduxjs/toolkit": "^1.2.1",
"@types/chance": "^1.0.8",
"@types/faker": "^4.1.9",
"@types/file-saver": "^2.0.1",
"@types/lodash-es": "^4.17.3",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.3",
"@types/styled-components": "^4.4.2",
"antd": "^3.26.6",
"chance": "^1.1.4",
"faker": "^4.1.0",
"file-saver": "^2.0.2",
"fp-ts": "^2.4.0",
"idb": "^5.0.1",
"immer": "^5.3.4",
"io-ts": "^2.0.4",
"json-schema-faker": "^0.5.0-rc23",
"lint-staged": "^9.5.0",
"lodash-es": "^4.17.15",
"monaco-editor": "^0.19.3",
"monaco-editor-webpack-plugin": "^1.8.2",
"openapi-types": "^1.3.5",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-monaco-editor": "^0.33.0",
"react-redux": "^7.1.3",
"react-resize-observer-hook": "0.0.2",
"react-router-dom": "^5.1.2",
"styled-components": "^4.4.1",
"swagger-parser": "^8.0.4"
},
"devDependencies": {
"@cypress/code-coverage": "^1.10.4",
"@cypress/instrument-cra": "^1.0.0",
"@cypress/webpack-preprocessor": "^4.1.1",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@testing-library/cypress": "^5.3.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.0.25",
"@types/node": "^12.12.24",
"@types/prettier": "^1.19.0",
"@types/testing-library__cypress": "^5.0.1",
"customize-cra": "^0.9.1",
"cypress": "^4.0.2",
"cypress-file-upload": "^3.5.3",
"cypress-pipe": "^1.6.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.0.4",
"istanbul-lib-coverage": "^3.0.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"react-app-rewired": "^2.1.5",
"react-scripts": "3.3.0",
"source-map-support": "^0.5.16",
"semantic-release": "^17.0.4",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.7.4"
},
"scripts": {
"start": "react-app-rewired start",
"start:coverage": "react-app-rewired -r @cypress/instrument-cra start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"lint": "eslint . --ext .ts,.tsx,.js --fix",
"cy:open": "cypress open --env coverage=false",
"cy:run": "cypress run",
"gen:chance": "ts-node --project ./scripts/tsconfig.json ./scripts/generate-chance-methods.ts",
"gen:faker": "ts-node --project ./scripts/tsconfig.json ./scripts/generate-faker-methods.ts",
"semantic-release": "semantic-release"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --fix",
"git add"
],
"*.{md,json,yml,yaml}": [
"prettier --write",
"git add"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"exclude": [
"src/serviceWorker.ts"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Fredx87/openapi-mock-generator.git"
},
"homepage": "https://fredx87.github.io/openapi-mock-generator"
}