-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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": "stock-simulator",
"version": "1.0.0",
"description": "app that allows users to simulate putting money into the stock market",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "NODE_ENV=development webpack-dev-server & nodemon ./server/server.js",
"build": "NODE_ENV=production webpack",
"start": "NODE_ENV=production nodemon ./server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stocksimulator/stocksimulator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stocksimulator/stocksimulator/issues"
},
"homepage": "https://github.com/stocksimulator/stocksimulator#readme",
"dependencies": {
"bcrypt": "^4.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.9.9",
"node-fetch": "^2.6.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"node-sass": "^4.13.1",
"nodemon": "^2.0.3",
"sass": "^1.26.3",
"css-loader": "^3.5.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}