-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.45 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
{
"name": "react_audio_player",
"version": "1.0.0",
"description": "An audio player written in React",
"main": "index.tsx",
"scripts": {
"dev": "webpack-dev-server --hot --open",
"serve": "webpack serve --open",
"prod": "webpack",
"sass-lint": "sass-lint app/sass/styles.sass --verbose -q",
"eslint": "eslint app/",
"typecheck": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "7.27.7",
"@babel/plugin-proposal-async-generator-functions": "7.2.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/polyfill": "7.6.0",
"@babel/preset-env":"7.27.2",
"@babel/preset-react": "7.6.3",
"@babel/preset-typescript": "7.27.1",
"@babel/runtime": "7.27.6",
"babel-loader": "8.0.6",
"babel-jest": "30.0.2",
"core-js": "3.3.2",
"css-loader": "^7.1.2",
"jest": "30.0.3",
"raw-loader": "^4.0.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"sass": "1.89.2",
"sass-loader": "16.0.5",
"style-loader": "^4.0.0",
"web-dev-server": "^1.6.5",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@eslint/js": "9.30.0",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"eslint": "9.30.0",
"typescript": "5.8.3",
"typescript-eslint": "8.35.1",
"sass-lint": "1.13.1"
}
}