forked from DevCom-IITB/ResoBin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.15 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
{
"name": "resobin",
"version": "0.5.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/relaxxpls/resobin.git"
},
"license": "MIT",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "eslint src/**/*.{js,jsx} --fix",
"lint:css": "stylelint src/**/*.{js,jsx} --fix"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"antd": "^4.16.13",
"axios": "^0.23.0",
"date-fns": "^2.25.0",
"dompurify": "^2.3.3",
"js-cookie": "^3.0.1",
"lodash": "^4.17.21",
"nanoid": "^3.1.30",
"polished": "^4.1.3",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.4.2",
"react-helmet-async": "^1.1.2",
"react-markdown": "^7.0.1",
"react-pdf": "^5.4.0",
"react-quill": "2.0.0-beta.4",
"react-redux": "^7.2.5",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"react-toastify": "^8.0.3",
"react-transition-group": "^4.4.2",
"redux-persist": "^6.0.0",
"remark-gfm": "^3.0.0",
"styled-components": "^5.3.1",
"styled-icons": "^10.45.0",
"web-vitals": "^2.1.2"
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"prettier": "^2.4.1",
"redux-logger": "^3.0.6",
"sass": "^1.43.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^22.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}