@vidispine/cra-template-vdt 23.2.0-pre.1 → 23.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vidispine/cra-template-vdt",
|
|
3
|
-
"version": "23.2.0
|
|
3
|
+
"version": "23.2.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -14,16 +14,16 @@
|
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
16
|
"format": "prettier . --check",
|
|
17
|
-
"lint": "eslint . --max-warnings=0"
|
|
17
|
+
"lint": "eslint . --cache --max-warnings=0 --ext .js,.jsx,.ts,.tsx,.md,.mdx"
|
|
18
18
|
},
|
|
19
19
|
"files": [
|
|
20
20
|
"template",
|
|
21
21
|
"template.json"
|
|
22
22
|
],
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@vidispine/eslint-config": "23.2.0
|
|
25
|
-
"@vidispine/eslint-config-mdx": "23.2.0
|
|
26
|
-
"@vidispine/prettier-config": "23.2.0
|
|
24
|
+
"@vidispine/eslint-config": "23.2.0",
|
|
25
|
+
"@vidispine/eslint-config-mdx": "23.2.0",
|
|
26
|
+
"@vidispine/prettier-config": "23.2.0",
|
|
27
27
|
"eslint": "8.34.0",
|
|
28
28
|
"prettier": "2.8.4"
|
|
29
29
|
},
|
|
@@ -6,8 +6,7 @@ import {
|
|
|
6
6
|
ListItemText,
|
|
7
7
|
Drawer as MUIDrawer,
|
|
8
8
|
} from '@material-ui/core';
|
|
9
|
-
import CollectionsIcon from '@material-ui/icons
|
|
10
|
-
import WebAssetIcon from '@material-ui/icons/WebAsset';
|
|
9
|
+
import { Collections as CollectionsIcon, WebAsset as WebAssetIcon } from '@material-ui/icons';
|
|
11
10
|
import clsx from 'clsx';
|
|
12
11
|
import { NavLink } from 'react-router-dom';
|
|
13
12
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { withStyles, IconButton, Typography, Toolbar, AppBar } from '@material-ui/core';
|
|
2
|
-
import MenuIcon from '@material-ui/icons
|
|
2
|
+
import { Menu as MenuIcon } from '@material-ui/icons';
|
|
3
3
|
|
|
4
4
|
import { UserAvatarButton } from '@vidispine/vdt-materialui';
|
|
5
5
|
import { useAuthContext } from '@vidispine/vdt-react';
|
package/template.json
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": {
|
|
3
3
|
"scripts": {
|
|
4
|
+
"start": "craco start",
|
|
5
|
+
"build": "craco build",
|
|
6
|
+
"test": "craco test",
|
|
4
7
|
"format": "prettier . --check",
|
|
5
|
-
"lint": "eslint ."
|
|
8
|
+
"lint": "eslint . --cache --max-warnings=0 --ext .js,.jsx,.ts,.tsx"
|
|
6
9
|
},
|
|
7
10
|
"dependencies": {
|
|
11
|
+
"@craco/craco": "7.1.0",
|
|
8
12
|
"@material-ui/core": "^4.12.4",
|
|
9
13
|
"@material-ui/icons": "^4.11.3",
|
|
10
14
|
"@material-ui/lab": "^4.0.0-alpha.61",
|
|
11
|
-
"@vidispine/vdt-api": "23.2.0
|
|
12
|
-
"@vidispine/vdt-materialui": "23.2.0
|
|
13
|
-
"@vidispine/vdt-react": "23.2.0
|
|
15
|
+
"@vidispine/vdt-api": "23.2.0",
|
|
16
|
+
"@vidispine/vdt-materialui": "23.2.0",
|
|
17
|
+
"@vidispine/vdt-react": "23.2.0",
|
|
14
18
|
"clsx": "^1.2.1",
|
|
15
19
|
"react": "^17.0.2",
|
|
16
20
|
"react-dom": "^17.0.2",
|
|
@@ -19,8 +23,8 @@
|
|
|
19
23
|
"typeface-roboto": "^1.1.13"
|
|
20
24
|
},
|
|
21
25
|
"devDependencies": {
|
|
22
|
-
"@vidispine/eslint-config": "23.2.0
|
|
23
|
-
"@vidispine/prettier-config": "23.2.0
|
|
26
|
+
"@vidispine/eslint-config": "23.2.0",
|
|
27
|
+
"@vidispine/prettier-config": "23.2.0",
|
|
24
28
|
"eslint": "^8.25.0",
|
|
25
29
|
"http-proxy-middleware": "^2.0.6",
|
|
26
30
|
"prettier": "^2.7.1"
|