-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.5 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
{
"name": "coolmodfiles",
"version": "0.5.7",
"description": "A web player that plays some cool MOD files randomly 🎶",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:e2e": "playwright test",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mod-player",
"chiptune-player",
"chiptune",
"retro",
"music",
"amiga"
],
"author": "",
"license": "GPL-3.0-only",
"dependencies": {
"@fontsource/press-start-2p": "^5.2.7",
"cheerio": "^1.2.0",
"copy-to-clipboard": "^4.0.2",
"dotenv": "^17.4.2",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"markdown-to-jsx": "^9.8.1",
"moment": "^2.30.1",
"next": "^16.2.5",
"rc-slider": "^11.1.9",
"react": "^19.2.6",
"react-device-detect": "^2.2.3",
"react-dom": "^19.2.6",
"react-drag-listview": "^2.0.0",
"react-toastify": "^11.1.0",
"sass": "^1.100.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/file-saver": "^2.0.7",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.6",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"overrides": {
"postcss": "^8.5.10"
}
}