-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.79 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
{
"name": "@eluvio/elv-ingest",
"version": "0.1.0",
"description": "A project template for creating an Eluvio application using React, Mobx, and elv-client-js.",
"main": "index.js",
"type": "module",
"author": "Eluvio, Inc.",
"license": "MIT",
"scripts": {
"serve": "rm -rf node_modules/.vite; vite",
"build": "rm -rf dist/* ; tsc && vite build",
"preview": "vite preview",
"lint": "npm-run-all -s lint-js-fix lint-scss-fix",
"lint-js": "eslint ./src --ext ts --report-unused-disable-directives --max-warnings 0",
"lint-js-fix": "eslint ./src --fix --ext ts --report-unused-disable-directives --max-warnings 0",
"lint-scss": "npx stylelint \"src/**/*.{css,scss}\"",
"lint-scss-fix": "npx stylelint \"src/**/*.{css,scss}\" --fix",
"prepare": "husky install"
},
"dependencies": {
"@eluvio/elv-client-js": "^4.0.80",
"@mantine/core": "^7.6.1",
"@mantine/hooks": "^7.6.1",
"@tabler/icons-react": "^3.2.0",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"mantine-datatable": "^7.6.1",
"mobx": "^6.12.0",
"mobx-react-lite": "^4.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^8.0.1",
"npm-run-all": "^4.1.5",
"sass": "^1.52.1",
"stylelint": "^16.2.1",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4",
"vite": "^5.1.6",
"vite-plugin-static-copy": "^1.0.1"
}
}