This repository was archived by the owner on Dec 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.11 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.11 KB
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
{
"name": "react-enhanced-components",
"version": "0.1.0",
"private": true,
"homepage": "https://gammaalpha.github.io/react-enhanced-components",
"main": "build/index.js",
"description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@styled-icons/boxicons-regular": "^10.23.0",
"@styled-icons/material": "^10.26.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"parchment": "^2.0.0-dev.2",
"quill": "^1.3.7",
"react": "^17.0.1",
"react-color": "^2.19.3",
"react-dom": "^17.0.1",
"react-quill": "^1.3.5",
"react-scripts": "4.0.1",
"rehype-highlight": "^4.0.0",
"rehype-picture": "^3.0.0",
"rehype-raw": "^5.0.0",
"rehype-react": "^6.2.0",
"rehype-sanitize": "^4.0.0",
"rehype-urls": "^1.1.1",
"remark-abbr": "git+https://github.com/Gammaalpha/remark-abbr.git",
"remark-gfm": "^1.0.0",
"remark-heading-id": "^1.0.0",
"remark-midas": "^6.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.0.0",
"remark-slug": "^6.0.0",
"remark-toc": "^7.0.0",
"remark-underline": "git+https://github.com/Gammaalpha/remark-underline.git",
"styled-components": "^5.2.1",
"typescript": "^4.0.3",
"unified": "^9.2.0",
"unified-stream": "^1.0.6",
"web-vitals": "^0.2.4"
},
"scripts": {
"publish": "npm run build-wp && sh deploy.sh",
"tsProd": "cp -f ./tsconfig.prod.json ./tsconfig.json",
"tsBase": "cp -f ./tsconfig.base.json ./tsconfig.json",
"webpack:dev": "npm run tsProd && npx webpack --config webpack.config.js",
"build-wp": "rm -rf build/ && webpack --mode production",
"deploy-gh": "rm -rf build/ && npm run build && gh-pages -d build && sh gh-deploy.sh",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"React",
"Material UI",
"Data Table",
"Rich Text Editor"
],
"author": "Faiq Malik",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Gammaalpha/react-enhanced-components.git"
},
"bugs": {
"url": "https://github.com/Gammaalpha/react-enhanced-components/issues"
},
"devDependencies": {
"@types/react-color": "^3.0.4",
"@types/styled-components": "^5.1.7",
"css-loader": "^5.0.1",
"gh-pages": "^5.0.0",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"url-loader": "^4.1.1",
"webpack-cli": "^4.4.0"
}
}