-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
114 lines (114 loc) · 3.53 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
{
"name": "temptifly",
"version": "0.6.8",
"description": "Side-by-side YAML resource editor",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && webpack --progress",
"clean": "del-cli dist/*",
"lint": "eslint src --ext .js,.jsx --max-warnings=0",
"lint:fix": "eslint src --ext .js,.jsx --fix",
"prettier": "prettier --check src",
"prettier:fix": "prettier --write src",
"test": "jest",
"test:update-snapshot": "jest --updateSnapshot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stolostron/temptifly.git"
},
"keywords": [
"template",
"editor"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/stolostron/temptifly/issues"
},
"homepage": "https://github.com/stolostron/temptifly#readme",
"dependencies": {
"apollo-client": "^2.2.8",
"deep-diff": "^1.0.2",
"graphql": "^0.13.2",
"ip-address": "^6.3.0",
"ip-cidr": "^2.0.11",
"js-yaml": "^3.13.1",
"lodash": "^4.17.21",
"react-apollo": "^2.3.1",
"react-router-dom": "^4.2.2",
"react-split-pane": "^0.1.92"
},
"peerDependencies": {
"@patternfly/react-core": "^4.75.2",
"@patternfly/react-icons": "^4.7.4",
"@patternfly/react-table": "^4.19.5",
"@patternfly/react-tokens": "^4.9.18",
"react": "^16.14.0 || ^17.0.0",
"react-dom": "^16.14.0 || ^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.5",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/plugin-transform-spread": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/register": "^7.12.1",
"@babel/runtime": "^7.12.5",
"@patternfly/react-core": "^4.75.2",
"@patternfly/react-icons": "^4.7.4",
"@patternfly/react-table": "^4.19.5",
"@patternfly/react-tokens": "^4.9.18",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.0",
"autoprefixer": "^6.7.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-istanbul": "^6.0.0",
"classnames": "^2.2.5",
"cross-fetch": "^3.0.4",
"css-loader": "^5.2.4",
"del-cli": "^3.0.1",
"eslint": "^4.19.1",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "1.x",
"filemanager-webpack-plugin": "^3.1.0",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.6.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.0",
"jest-handlebars": "^1.0.1",
"jest-sonar-reporter": "^2.0.0",
"jest-tap-reporter": "^1.9.0",
"jest-yaml-transform": "^0.2.0",
"js-yaml-loader": "^1.2.2",
"jsonfile": "^4.0.0",
"mini-css-extract-plugin": "^0.12.0",
"null-loader": "^3.0.0",
"prettier": "^2.1.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.4.0"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
}