-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 loc) · 857 Bytes
/
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
{
"name": "big-two",
"version": "1.0.0",
"description": "Big Two is a playing card game popular in Asia as well as Guthrie's house.\r It's called Big 2 because 2 is the highest rank in the game.\r The goal of the game is to play all of one's cards before the other players.",
"main": "index.js",
"dependencies": {
"common-js": "^0.3.8"
},
"devDependencies": {
"typescript": "^4.7.4",
"webpack": "^5.36.2",
"webpack-cli": "^4.10.0"
},
"scripts": {
"compile-typescript": "tsc",
"start": "node ./dist/script.js",
"test": "echo \"Error: no test specified\" && exit 1",
"create-dist": "webpack --mode production --entry ./src/js/Application.js --output-path ./dist/",
"build": "tsc && webpack --mode production --entry ./src/js/Application.js --output-path ./dist/"
},
"author": "",
"license": "ISC"
}