-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
128 lines (128 loc) · 4.04 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "scrabble-solver",
"version": "2.15.7",
"description": "Scrabble Solver 2 - Free, open-source, cross-platform, multi-language analysis tool for Scrabble, Super Scrabble, Literaki, and Kelimelik. Quickly find the top-scoring words using the given board and tiles.",
"keywords": [
"Scrabble",
"Super Scrabble",
"Kelimelik",
"Literaki",
"Solver",
"Finder",
"Cheating",
"Word",
"English",
"Français",
"French",
"Deutsch",
"German",
"Polski",
"Polish",
"فارسی",
"Farsi",
"Español",
"Spanish",
"Română",
"Romanian",
"Türkçe",
"Turkish",
"SOWPODS",
"TWL06",
"SJP",
"CNRTL",
"Kamil Mielnik",
"TypeScript",
"TS",
"Frontend",
"App"
],
"engines": {
"node": ">=20"
},
"bin": {
"scrabble-solver": "./bin/scrabble-solver.js"
},
"scripts": {
"build": "npm run build -w packages",
"clean": "npm run clean -w packages && rimraf node_modules/",
"dev": "npm run dev -w @scrabble-solver/scrabble-solver",
"lint": "eslint cypress packages",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --check './**/*.{js,ts,tsx,scss}'",
"prettier:fix": "npm run prettier -- --write",
"reinstall": "npm run clean && npm install && npm run build",
"release": "npm run release:prepare && npm run release:publish",
"release:prepare": "npm run reinstall",
"release:publish": "npm run version:bump && np && lerna publish from-package --yes",
"start": "concurrently -n w: npm:start:*",
"start:app": "npm run start -w @scrabble-solver/scrabble-solver",
"start:browser": "open-cli http://localhost:3333",
"test": "npm run build && npm run test-jest && concurrently \"npm run start:app\" \"npm run test-cypress:run\" -k -s first",
"test-cypress": "cypress open",
"test-cypress:run": "CYPRESS_BASE_URL=http://localhost:3333 cypress run",
"test-jest": "jest --no-cache --coverage",
"test-jest:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --no-cache --watch",
"test-jest:watch": "jest --no-cache --watch",
"version:bump": "npm run version:bump-lerna && npm run version:commit",
"version:bump-lerna": "lerna version --force-publish --no-git-tag-version --no-push",
"version:commit": "node bump-version.js && git add . && git commit -m \"Bump version\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamilmielnik/scrabble-solver.git"
},
"author": {
"name": "Kamil Mielnik",
"email": "[email protected]",
"url": "https://kamilmielnik.com"
},
"license": "CC-BY-NC-ND-4.0",
"bugs": {
"url": "https://github.com/kamilmielnik/scrabble-solver/issues"
},
"homepage": "https://scrabble-solver.org",
"workspaces": [
"packages/logger",
"packages/constants",
"packages/types",
"packages/configs",
"packages/word-lists",
"packages/word-definitions",
"packages/dictionaries",
"packages/solver",
"packages/scrabble-solver"
],
"dependencies": {
"@scrabble-solver/scrabble-solver": "^2.15.7",
"concurrently": "^9.1.2",
"open-cli": "^8.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.26.7",
"@testing-library/cypress": "^10.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"cypress": "^14.0.0",
"cypress-real-events": "^1.14.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-cypress": "^3.4.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "29.7.0",
"lerna": "^8.1.9",
"np": "^10.1.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}