-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.53 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@poker/html-client",
"version": "0.3.1",
"description": "HTML client for online poker",
"main": "dist/poker-html-client.js",
"scripts": {
"compile": "npx tsc --project build-tsconfig.json",
"compile:test": "npx tsc --project tsconfig.json",
"lint": "eslint --ext .ts js",
"lint:test": "eslint --ext .ts tests",
"lint-fix": "eslint --project tsconfig.json --fix src",
"eslint": "eslint",
"configure-ci": "node build/configure-ci.js",
"build": "npm run webpack && npm run lint",
"webpack": "npx webpack --mode=none",
"test": "npx jest",
"test:watch": "jest --watch",
"prepack": "npm run build",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/online-poker/poker-html-client.git"
},
"keywords": [
"Poker",
"online",
"client"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/online-poker/poker-html-client/issues"
},
"files": [
"dist/poker-html-client.js",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/online-poker/poker-html-client#readme",
"devDependencies": {
"@types/cordova": "^0.0.34",
"@types/cordova-plugin-camera": "^2.4.0",
"@types/cordova-plugin-device": "^1.1.5",
"@types/cordova-plugin-keyboard": "^0.1.2",
"@types/cordova-plugin-media": "^3.0.0",
"@types/cordova-plugin-network-information": "^1.3.2",
"@types/cordova-plugin-splashscreen": "^4.0.2",
"@types/cordova-plugin-statusbar": "^2.2.2",
"@types/jest": "24.0.15",
"@types/jquery": "3.3.30",
"@types/moment": "^2.13.0",
"@types/signalr": "^2.2.35",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"css-loader": "6.8.1",
"eslint": "8.52.0",
"file-loader": "6.2.0",
"jest": "29.7.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "2.7.6",
"style-loader": "0.23.1",
"ts-jest": "29.1.1",
"ts-loader": "^9.5.0",
"typescript": "^4.9.5",
"url-loader": "4.1.1",
"webpack": "5.89.0",
"webpack-cli": "5.1.4"
},
"dependencies": {
"@poker/api-server": "0.1.0-dev.20231113120601",
"@types/applicationinsights-js": "^1.0.5",
"iframe-touch-relay": "0.0.7",
"isomorphic-fetch": "^3.0.0",
"jest-environment-jsdom": "^29.7.0",
"jquery": "3.7.1",
"knockout": "3.5.1",
"knockout.validation": "^2.0.4",
"moment": "2.29.4",
"signalr": "^2.4.1",
"signals": "^1.0.0"
}
}