-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.89 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
{
"name": "@eluvio/elv-studio",
"version": "0.1.0",
"description": "A standalone application for ingesting content onto the Eluvio fabric.",
"main": "index.js",
"author": "Eluvio, Inc.",
"type": "module",
"license": "MIT",
"scripts": {
"serve": "rm -rf node_modules/.vite; vite",
"build": "rm -rf dist/* ; vite build",
"preview": "vite preview",
"lint": "npm-run-all -s -c lint-js-fix lint-scss-fix",
"lint-js": "eslint ./src --ext js,jsx --report-unused-disable-directives",
"lint-js-fix": "eslint ./src --fix --ext js,jsx --report-unused-disable-directives",
"lint-scss": "npx stylelint \"src/**/*.{css,scss}\"",
"lint-scss-fix": "npx stylelint \"src/**/*.{css,scss}\" --fix",
"prepare": "husky install"
},
"dependencies": {
"@eluvio/elv-abr-profile": "^1.0.1",
"@eluvio/elv-client-js": "^4.0.93",
"@eluvio/elv-lro-status": "^3.0.7",
"@mantine/core": "^7.11.2",
"@radix-ui/react-dialog": "^1.0.0",
"@radix-ui/react-tooltip": "^1.0.0",
"mobx": "^6.13.1",
"mobx-react-lite": "^4.0.7",
"pretty-bytes": "^6.0.0",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.0",
"react-router-dom": "^6.3.0",
"url-join": "^5.0.0",
"vite-plugin-commonjs": "^0.10.1",
"vite-plugin-static-copy": "^1.0.6"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.18.0",
"@babel/preset-react": "^7.17.12",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "7.32.0",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.8",
"husky": "^8.0.1",
"npm-run-all": "^4.1.5",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"stylelint": "^14.8.5",
"stylelint-config-standard-scss": "^4.0.0",
"vite": "^5.3.4"
}
}