-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (48 loc) · 1.45 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
// "dev-front": "NODE_ENV=development webpack serve --open",
// "dev-back": "nodemon server/server.js",
// "dev-hour": "npm run dev-back & npm run dev-front",
// "prod-hour": "npm run build && nodemon server/server.js"
// “Concurrently \”cross-env npm run start:dev\” \”cross-env npm run dev\””
{
"name": "stock-app",
"version": "1.0.0",
"description": "All-In-One Platform that allows you to save your favorite stocks and view their financial reports",
"main": "index.js",
"scripts": {
"start": "nodemon server/server.js",
"dev": "webpack-dev-server --hot --open",
"build": "webpack"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apexcharts": "^3.36.3",
"axios": "^1.1.3",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^6.7.2",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"react-router-dom": "^6.4.3"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.0",
"css-loader": "^6.7.2",
"eslint": "^8.27.0",
"eslint-plugin-react": "^7.31.10",
"html-webpack-plugin": "^5.5.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}