-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.59 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
{
"name": "react-app-simple-music-app",
"version": "4.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client:build": "node_modules/.bin/webpack --mode production --config ./public/webpack.config.js",
"client:dev": "node_modules/.bin/webpack --mode development --config ./public/webpack.config.js",
"client:start": "node_modules/.bin/http-server ./public/dist/ -c-1 --cors -d false",
"server:build": "node_modules/.bin/tsc -p server/tsconfig.json",
"server:start": "node -r dotenv/config ./server/dist/server.js dotenv_config_path=./server/.env"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anijitsahu/react-app-simple-music-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/anijitsahu/react-app-simple-music-app/issues"
},
"homepage": "https://github.com/anijitsahu/react-app-simple-music-app#readme",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"copy-webpack-plugin": "^11.0.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"cors": "^2.8.5",
"css-loader": "^6.7.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"http-server": "^14.1.1",
"mongodb": "^5.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.1",
"style-loader": "^3.3.1"
}
}