forked from isaacphysics/isaac-content-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.56 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.56 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "isaac-content-editor",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-syntax-flow": "^7.24.7",
"@babel/plugin-transform-react-jsx": "^7.24.7",
"@babel/runtime": "^7.24.7",
"@codemirror/autocomplete": "^6.16.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.5",
"@codemirror/language": "^6.10.2",
"@codemirror/lint": "^6.8.0",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.28.0",
"@lezer/common": "^1.2.1",
"@popperjs/core": "^2.11.8",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/object-hash": "^3.0.6",
"@types/react": "^16.8.5",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^16.8.5",
"@uiw/react-codemirror": "^4.22.2",
"bootstrap": "^4.6.2",
"classnames": "^2.5.1",
"codemirror": "^6.0.0",
"fast-json-patch": "^3.1.1",
"he": "^1.2.0",
"js-cookie": "^3.0.5",
"katex": "^0.16.10",
"object-hash": "^3.0.0",
"react": "^16.8.5",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "16.8.5",
"react-drag-drop-files": "^2.3.7",
"react-error-boundary": "^3.1.4",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.1",
"react-select": "^5.3.2",
"react-split": "^2.0.14",
"reactstrap": "^8.10.1",
"remarkable": "^2.0.1",
"swr": "^1.2.1",
"typescript": "^4.5.5",
"web-vitals": "^4.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier . --write",
"lint": "eslint src/"
},
"eslintConfig": {
"extends": [
"react-app",
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jsx-a11y/strict",
"plugin:prettier/recommended"
],
"plugins": [
"react-hooks",
"@typescript-eslint",
"jsx-a11y"
],
"rules": {
"no-prototype-builtins": "off",
"prefer-const": "warn",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-empty-interface": "warn",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/ban-ts-comment": "warn",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
]
},
"settings": {
"react": {
"version": "detect"
}
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
}
},
"eslintIgnore": [
"/src/isaac-data-types.d.ts"
],
"browserslist": [
">0.2%",
"not dead",
"not ie <= 10",
"not op_mini all"
],
"devDependencies": {
"@types/he": "^1.2.3",
"@types/js-cookie": "^3.0.6",
"@types/katex": "^0.16.7",
"@types/react-test-renderer": "^16.0.0",
"@types/remarkable": "^2.0.8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"react-test-renderer": "^16.14.0"
}
}