forked from andyaiken/dojo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.11 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.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
{
"name": "dojo",
"version": "15.31.1",
"license": "MIT",
"repository": "https://github.com/andyaiken/dojo.git",
"homepage": "https://andyaiken.github.io/dojo/",
"dependencies": {
"@ant-design/icons": "^4.6.4",
"antd": "^4.16.13",
"html2canvas": "^1.3.2",
"lz-string": "^1.4.4",
"mousetrap": "^1.6.5",
"peerjs": "^1.3.2",
"react": "^17.0.2",
"react-debounce-input": "^3.2.5",
"react-dom": "^17.0.2",
"react-markdown": "^7.0.1",
"react-mde": "^11.5.0",
"react-movable": "^2.5.4",
"react-router-dom": "^5.2.1",
"recursive-diff": "^1.0.8",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/html2canvas": "^0.0.36",
"@types/lz-string": "^1.3.34",
"@types/mousetrap": "^1.6.8",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@types/uuid": "^8.3.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.25.1",
"gh-pages": "^3.2.3",
"node-sass": "^6.0.1",
"react-scripts": "^4.0.3",
"typescript": "^4.4.2"
},
"scripts": {
"start": "react-scripts start --display-error-details",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"predeploy": "react-scripts build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"react-app"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"react"
],
"root": true,
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off"
},
"settings": {
"react": {
"version": "detect"
}
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}