This repository was archived by the owner on Jul 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 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
{
"name": "react-music-website",
"private": true,
"scripts": {
"quick-start": "npm-run-all build --parallel serve build:watch",
"build": "run-s clean:all webpack",
"build:production": "run-s clean:all babel webpack:production clean:es5",
"build:watch": "run-s clean:all webpack:watch",
"serve": "webpack serve --config webpack.config.js --open",
"babel": "babel src --out-dir es5",
"webpack": "webpack",
"webpack:production": "webpack --env production",
"webpack:watch": "webpack --watch",
"clean:all": "rm -rf public/dist es5",
"clean:es5": "rm -rf es5"
},
"dependencies": {
"@lagunovsky/redux-react-router": "^4.3.0",
"@reduxjs/toolkit": "^1.9.0",
"dompurify": "^2.4.1",
"history": "^5.3.0",
"lodash.clone": "^4.5.0",
"lodash.merge": "^4.6.2",
"object.values": "^1.1.6",
"pako": "^2.1.0",
"prop-types": "^15.8.1",
"radium": "^0.26.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.3",
"react-waypoint": "^10.3.0",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-saga": "^1.2.1"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.0",
"file-loader": "^6.2.0",
"npm-run-all": "^4.1.5",
"trash-cli": "^5.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}