-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "mvp",
"version": "1.0.0",
"description": "A Texas Hold-Em Poker Application",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon Server/routes.js",
"build": "npx webpack --config webpack.config.js --watch",
"seed": "node Database/gameSeed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pachown/MVP-Poker-App.git"
},
"author": "Thomas McNutt",
"license": "ISC",
"bugs": {
"url": "https://github.com/pachown/MVP-Poker-App/issues"
},
"homepage": "https://github.com/pachown/MVP-Poker-App#readme",
"dependencies": {
"axios": "^0.21.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongodb": "^3.6.4",
"mongoose": "^5.11.15",
"newrelic": "^7.1.1",
"nodemon": "^2.0.7",
"pokersolver": "^2.1.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-jss": "^10.5.1",
"react-pure-render": "^1.0.2",
"shuffle": "^0.2.5"
},
"devDependencies": {
"webpack": "^5.21.2",
"babel-loader": "^8.2.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13"
}
}