-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.31 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
{
"name": "poker-master-tool",
"version": "2.0.3",
"description": "Open-source poker hand calculator",
"main": "dist/index.js",
"scripts": {
"start": "NODE_ENV=production NODE_PATH=./dist node dist/index.js",
"dev": "NODE_PATH=./src ts-node src/index.ts",
"dev:frontend": "webpack-dev-server",
"dev:docker": "docker-compose up --build",
"build:all": "npm run build && npm run build:frontend && npm run addon:all",
"build": "tsc -p tsconfig.backend.json",
"build:frontend": "webpack --mode=production",
"addon:all": "npm run addon:configure && npm run addon:build && npm run addon:generate-table",
"addon:configure": "node-gyp configure",
"addon:build": "node-gyp rebuild",
"addon:generate-table": "cd addon/table_generator && make",
"test": "jest --maxWorkers=1",
"test:coverage": "jest --coverage",
"test:performance": "node tests/performance_test.js",
"test:performance:printResults": "node tests/performance_test.js printResults",
"lint": "eslint \"**/*.ts\" --fix"
},
"author": "Bartosz Putek",
"license": "MIT",
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"helmet": "^5.1.1",
"uuid": "^8.3.2",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jest": "^27.5.2",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^25.7.0",
"html-loader": "^3.1.2",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"mini-css-extract-plugin": "^2.7.2",
"mockdate": "^3.0.5",
"nan": "^2.17.0",
"node-gyp": "^10.2.0",
"supertest": "^6.3.3",
"ts-jest": "^27.1.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}