-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.6 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
{
"name": "maestro-ui",
"version": "0.4.0",
"description": "An React-based music player and library manager.",
"main": "main.js",
"scripts": {
"start": "node server.js",
"start:dev": "webpack-dev-server --mode development --host 0.0.0.0",
"build": "npm run clean && npm run lint && webpack --mode production",
"build:dev": "webpack --mode development",
"postinstall": "webpack --mode production",
"lint": "eslint --ext .ts,.tsx ./src",
"clean": "rm -rf dist"
},
"author": "Daniel A. Rodriguez",
"devDependencies": {
"@types/is-empty": "^1.2.0",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"eslint": "^6.7.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"@material-ui/core": "^4.7.0",
"@material-ui/icons": "^4.5.1",
"express": "^4.17.1",
"is-empty": "^1.2.0",
"react": "^16.12.0",
"react-audio-player": "^0.11.1",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.18",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0"
}
}