This repository was archived by the owner on Mar 12, 2023. 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
69 lines (69 loc) · 1.99 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.99 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
{
"name": "community-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.1.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/draft-js": "^0.10.41",
"@types/draftjs-to-html": "^0.8.0",
"@types/html-to-draftjs": "^1.4.0",
"@types/js-base64": "^2.3.2",
"@types/node": "^14.0.13",
"@types/react": "^16.9.38",
"@types/react-dom": "^16.9.8",
"@types/react-draft-wysiwyg": "^1.13.0",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"axios": "^0.21.2",
"connected-react-router": "^6.8.0",
"date-fns": "^2.14.0",
"draft-js": "^0.11.6",
"draftjs-to-html": "^0.9.1",
"html-to-draftjs": "^1.5.0",
"js-base64": "^2.6.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-draft-wysiwyg": "^1.14.6",
"react-icons": "^3.10.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"tailwindcss": "^1.4.6",
"typescript": "^3.9.5"
},
"scripts": {
"start": "npm run tailwind:css && react-scripts start",
"build": "npm run tailwind:css && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"tailwind:css": "tailwind build src/tailwind.css -c tailwind.config.js -o src/index.css",
"lint": "eslint './src/**/*.{ts, tsx}'"
},
"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"
]
},
"devDependencies": {
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5"
}
}