-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
137 lines (137 loc) · 4.48 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "xsound-app",
"version": "2.0.0",
"engines": {
"node": ">=20.0.0 <=22.13.x"
},
"description": "Web Music Application by XSound (Web Audio API Library)",
"main": "./assets/app.js",
"scripts": {
"clean": "rm -f register.js sw.js ./assets/app.* ./assets/vendor.*",
"lint:eslint": "eslint 'src/**/*.{ts,tsx}' 'mock/**/*.ts' '.storybook/*.ts' jest.config.mjs webpack.config.mjs",
"lint:stylelint": "stylelint 'src/**/*.css'",
"lint:markuplint": "markuplint index.html 'src/**/*.tsx'",
"lint": "run-p lint:eslint lint:stylelint lint:markuplint",
"fix:eslint:": "eslint --fix 'src/**/*.{ts,tsx}' 'mock/**/*.ts' '.storybook/*.ts' jest.config.mjs webpack.config.mjs",
"fix:stylelint": "stylelint --fix 'src/**/*.css' && prettier --write 'src/**/*.css'",
"fix:markuplint": "markuplint --fix index.html",
"fix": "run-p fix:eslint fix:stylelint fix:markuplint",
"format:check": "prettier --check 'src/**/*.{ts,tsx,css}' 'mock/**/*.ts' '.storybook/*.ts' jest.config.mjs webpack.config.mjs index.html",
"format": "prettier --write 'src/**/*.{ts,tsx,css}' 'mock/**/*.ts' '.storybook/*.ts' jest.config.mjs webpack.config.mjs index.html",
"type:main": "tsc --noEmit",
"type:sw": "tsc --noEmit --project tsconfig.sw.json",
"type": "run-p type:main type:sw",
"build": "npm run clean && NODE_ENV=production webpack --progress --mode production",
"dev": "webpack-dev-server --progress",
"test": "jest",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:detect": "jest --detectOpenHandles",
"storybook": "storybook dev --port 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write 'src/**/*.{ts,tsx}'"
],
"src/**/*.css": [
"stylelint --fix",
"prettier --write 'src/**/*.css'"
],
"index.html": [
"markuplint --fix",
"prettier --write index.html"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Korilakkuma/XSound.app.git"
},
"keywords": [
"XSound.app",
"XSound",
"Web Music",
"Web Audio API",
"Web MIDI API",
"WebRTC"
],
"author": "Korilakkuma <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Korilakkuma/XSound.app/issues"
},
"homepage": "https://xsound.app",
"files": [
"assets",
"index.html",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"@reduxjs/toolkit": "^2.5.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"xsound": "^4.0.7"
},
"devDependencies": {
"@markuplint/jsx-parser": "^4.7.14",
"@markuplint/react-spec": "^4.5.14",
"@storybook/addon-actions": "^8.5.3",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addon-links": "^8.5.3",
"@storybook/react": "^8.5.3",
"@storybook/react-vite": "^8.5.3",
"@storybook/test-runner": "^0.21.0",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/react-redux": "^7.1.34",
"@types/react-test-renderer": "^19.0.0",
"chromatic": "^11.25.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.19.0",
"eslint-cli": "^1.1.1",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"html-webpack-plugin": "^5.6.3",
"husky": "4.3.8",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.4.3",
"markuplint": "^4.11.4",
"mini-css-extract-plugin": "^2.9.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"react-test-renderer": "^19.0.0",
"storybook": "^8.5.3",
"stylelint": "^16.14.1",
"stylelint-config-recess-order": "^6.0.0",
"stylelint-config-standard": "^37.0.0",
"terser-webpack-plugin": "^5.3.11",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"url-loader": "^4.1.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
}
}