-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.19 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
{
"name": "redbox-language-editor",
"homepage": "https://jcu-eresearch.github.io/redbox-language-editor/",
"version": "2.0.0",
"private": true,
"license": "MIT",
"dependencies": {
"@mdi/js": "^5.9.55",
"@mdi/react": "^1.5.0",
"@tinymce/tinymce-react": "^3.12.6",
"gh-pages": "^3.2.3",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"tinymce": "^5.8.2",
"xlsx": "^0.17.0"
},
"devDependencies": {
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"babel-eslint": "^10.1.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.8.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.9.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"deploy": "yarn run build && gh-pages -d build/",
"lint": "eslint --cache --fix ./src && prettier --write ./src ./public",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "husky install"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,html,scss,css,md}": "prettier --write"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:jsx-a11y/recommended",
"plugin:react-hooks/recommended",
"prettier"
],
"plugins": [
"jsx-a11y"
]
},
"prettier": {
"singleQuote": true,
"semi": false,
"arrowParens": "avoid"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}