-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.43 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "doombox",
"version": "2.0.0",
"description": "Music player for your unwieldy music collection",
"repository": {
"type": "git",
"url": "https://github.com/chronoDave/Doombox.git"
},
"author": "Chronocide",
"private": true,
"license": "GPL-3.0",
"engines": {
"node": ">=16.7.0"
},
"scripts": {
"lint:eslint": "eslint src test",
"lint:tsc": "tsc --noEmit",
"lint:scss": "stylelint src/renderer/**/*.scss",
"lint:fix": "eslint src test --fix",
"lint": "npm run lint:tsc && npm run lint:eslint",
"start:app": "node scripts/app.js -w --dev",
"start:electron": "node scripts/electron.js",
"build:test": "node scripts/tape.js",
"build:app": "node scripts/app.js",
"build:electron": "electron-builder -p=never -c .electron.config.js",
"build": "npm run build:app && npm run build:electron",
"test:app": "npm run build:test && tape build/test/app/**/*.spec.js",
"test:lib": "npm run build:test && tape build/test/lib/**/*.spec.js",
"test:renderer": "npm run build:test && tape build/test/renderer/**/*.spec.js",
"test": "npm run build:test && tape build/test/**/*.spec.js"
},
"devDependencies": {
"@types/howler": "^2.2.7",
"@types/jsdom": "^20.0.0",
"@types/kuromoji": "^0.1.2",
"@types/node": "^20.1.0",
"@types/sharp": "^0.30.5",
"@types/tape": "^4.13.2",
"@types/wanakana": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"chokidar": "^3.5.3",
"electron": "^28.2.3",
"electron-builder": "^24.13.3",
"esbuild": "^0.17.18",
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.30.1",
"jsdom": "^20.0.0",
"sass": "^1.54.0",
"stylelint": "^15.10.1",
"stylelint-config-standard-scss": "^9.0.0",
"tape": "^5.5.3",
"typescript": "^4.7.4"
},
"dependencies": {
"deepmerge": "^4.2.2",
"fast-deep-equal": "^3.1.3",
"fast-glob": "^3.2.11",
"forgo": "^3.2.2",
"howler": "^2.2.3",
"immer": "^9.0.15",
"kuromoji": "^0.1.2",
"leaf-db": "^10.1.0",
"music-metadata": "^8.1.0",
"p-map": "^5.5.0",
"sharp": "^0.32.6",
"tabbable": "^6.1.2",
"wanakana": "^5.1.0"
}
}