-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 890 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "gin-rummy",
"version": "0.0.7",
"main": "index.js",
"license": "MIT",
"bin": {
"gin-rummy": "./dist/index.js"
},
"scripts": {
"start": "ts-node-dev --respawn src/index.tsx",
"build": "tsc -p tsconfig.json --outDir dist",
"lint": "prettier --check .",
"format": "prettier --write .",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/jahredhope/gin-rummy.git"
},
"dependencies": {
"ink": "^3.0.8",
"react": "^17.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.0",
"@types/react": "^17.0.11",
"jest": "^27.0.1",
"prettier": "^2.3.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
}
}