-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.27 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
{
"name": "ultralight",
"version": "0.6.0",
"description": "Ultralight - a Lyrion Media Server skin",
"author": "Daniel Miller",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/millerdev/lms-ultralight.git"
},
"dependencies": {
"@babel/runtime": "^7.29.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^9.0.1",
"@mui/material": "^9.0.1",
"axios": "^1.16.1",
"lodash": "^4.18.1",
"query-string": "^9.3.1",
"rc-slider": "^11.1.9",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-intersection-observer": "^10.0.3",
"react-redux": "^9.3.0",
"react-router": "^7.15.1",
"redux": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.5",
"@babel/preset-react": "^7.28.5",
"@babel/register": "^7.29.3",
"@testing-library/react": "^16.0.0",
"@eslint/js": "^9.39.4",
"axios-mock-adapter": "^2.1.0",
"babel-loader": "^10.1.1",
"babel-plugin-rewire": "^1.2.0",
"chai": "^6.2.2",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-webpack-plugin": "^6.0.0",
"folder-zip": "0.0.5",
"fs-extra": "^11.3.5",
"globals": "^16.0.0",
"html-webpack-plugin": "^5.6.7",
"jsdom": "^28.1.0",
"mini-css-extract-plugin": "^2.10.2",
"mocha": "^11.7.6",
"style-loader": "^4.0.0",
"webpack": "^5.107.1",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.4"
},
"overrides": {
"diff": "^9.0.0",
"serialize-javascript": "^7.0.5",
"uuid": "^14.0.0"
},
"scripts": {
"start": "npm run build && http-server dist",
"build": "node tools/rm dist && NODE_ENV=production webpack --bail --progress",
"dev": "webpack serve --mode development --env development",
"test": "mocha --require test/helpers/css-null-compilers --require test/helpers/eslint-hook.js test/helpers/main.js test/*.test.js",
"package": "node tools/pkg",
"profile": "NODE_ENV=production webpack --profile --json > stats.json"
}
}