forked from minht11/local-music-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.88 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
58
59
{
"name": "snae_music_player",
"version": "1.0.4",
"description": "Lightweight on device music player right in your browser.",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"typecheck": "npx tsc --noEmit"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/css-tree": "^1.0.7",
"@types/node": "^16.11.35",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@vanilla-extract/vite-plugin": "^3.1.6",
"css-class-generator": "^2.0.0",
"css-tree": "^2.1.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"typescript": "^4.6.4",
"vite": "^2.9.9",
"vite-plugin-html": "^3.2.0",
"vite-plugin-solid": "^2.2.6",
"vite-plugin-webfont-dl": "^2.0.0"
},
"dependencies": {
"@a11y/focus-trap": "^1.0.5",
"@material/material-color-utilities": "^0.1.2",
"@minht11/solid-virtual-container": "^0.2.1",
"@otonashixav/solid-flip": "0.10.5",
"@solid-primitives/deep": "^0.2.7",
"@types/offscreencanvas": "^2019.6.4",
"@types/wicg-file-system-access": "^2020.9.5",
"@vanilla-extract/css": "^1.7.0",
"@vanilla-extract/dynamic": "^2.0.2",
"@vanilla-extract/sprinkles": "^1.4.0",
"buffer": "^6.0.3",
"idb-keyval": "^6.1.0",
"music-metadata": "^7.12.3",
"nanoid": "^3.3.4",
"peerjs": "^1.5.2",
"solid-app-router": "^0.3.2",
"solid-js": "^1.4.1",
"solid-utils": "^0.8.1"
}
}