-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 810 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 810 Bytes
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
{
"name": "blackjack",
"version": "0.0.1",
"description": "Classic casino style blackjack",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch",
"start": "webpack serve --open",
"server": "node server.js",
"build": "webpack"
},
"keywords": [
"blackjack",
"casino",
"game"
],
"author": "Shane Pearson <bubbafoley@gmail.com>",
"license": "MTI",
"devDependencies": {
"css-loader": "^7.1.2",
"express": "^4.21.1",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^4.0.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^7.4.2",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"dotenv": "^16.4.5",
"lodash": "^4.17.21"
}
}