-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.47 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
{
"name": "elv-ai-search",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"serve": "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"
},
"dependencies": {
"@eluvio/elv-client-js": "^4.0.109",
"@eluvio/elv-player-js": "^2.0.18",
"@mantine/core": "^7.11.2",
"@mantine/dropzone": "^7.12.1",
"@mantine/hooks": "^7.11.2",
"@tabler/icons-react": "^3.24.0",
"fraction.js": "^4.3.7",
"mobx": "^6.13.1",
"mobx-react-lite": "^4.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.0",
"url": "^0.11.4",
"url-join": "^5.0.0",
"vite-plugin-static-copy": "^1.0.6"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"npm-run-all": "^4.1.5",
"stylelint": "^16.8.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"vite": "^5.3.4"
}
}