-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.73 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
{
"name": "@xkit-co/xkit-catalog-react.js",
"version": "1.2.1",
"repository": {
"type": "git",
"url": "https://github.com/xkit-co/xkit-catalog-react.js.git"
},
"description": "Integration Catalog for Xkit for React apps",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"server:dev": "parcel watch src/browser.ts src/collect.tsx src/spinner.tsx src/error.tsx",
"server:build": "npm test && parcel build --no-cache src/browser.ts src/collect.tsx src/spinner.tsx src/error.tsx",
"npm:build": "rm -rf lib && tsc --outDir lib --declaration && npm run npm:compile-css && npm run npm:copy-images",
"npm:compile-css": "bin/css-to-js src/ lib/",
"npm:copy-images": "parcel build --no-cache src/ui/images/index.ts --out-dir lib/ui/images --no-source-maps && rm lib/ui/images/report.html",
"test": "tsc --noEmit",
"prepublishOnly": "npm run npm:build",
"repo": "echo $npm_package_repository_url",
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix",
"_prettier": "prettier 'src/**/*.{js,jsx,ts,tsx}'",
"format-check": "npm run _prettier -- --check",
"format-fix": "npm run _prettier -- --write"
},
"author": "Xkit <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "~7.10.2",
"@babel/preset-react": "~7.10.1",
"@types/history": "^4.7.7",
"@types/parcel-bundler": "^1.12.1",
"@types/react": "~16.9.35",
"@types/react-dom": "~16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/react-transition-group": "~4.4.0",
"@types/string-similarity": "^3.0.0",
"@types/tinycolor2": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"parcel-bundler": "~1.12.4",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"parcel-plugin-css-to-string": "^2.5.0",
"parcel-plugin-stdin": "^0.1.1",
"prettier": "^2.3.2",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"typescript": "~3.9.5"
},
"dependencies": {
"@treygriffith/evergreen-ui": "^6.1.1",
"@treygriffith/ui-box": "^5.0.0",
"@xkit-co/xkit.js": "3.12.2",
"glamor": "^2.20.40",
"history": "^4.10.1",
"react-router-dom": "^5.2.0",
"remark-parse": "^8.0.2",
"remark-react": "^7.0.1",
"string-similarity": "^4.0.1",
"tinycolor2": "^1.4.1",
"unified": "^9.0.0"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0",
"react-dom": "^16.9.0 || ^17.0.0"
}
}