-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.37 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
{
"name": "cardsgame",
"version": "2.2.2",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*"
],
"author": "Darek Greenly (https://darekgreenly.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zielak/cardsGame.git"
},
"bugs": {
"url": "https://github.com/zielak/cardsGame/issues"
},
"scripts": {
"linkup": "scripts/linkup.sh",
"linkup:colyseus": "scripts/linkupColyseus.sh",
"test": "jest --config config/jest.config.cjs --silent --maxWorkers=75%",
"test:ci": "jest --config config/jest.config.cjs --silent --ci --maxWorkers=1 --coverage --coverageReporters=lcovonly",
"coveralls": "coveralls < coverage/lcov.info",
"lint": "eslint . --ext .js,.cjs,.jsx,.ts,.tsx",
"build": "./scripts/build.sh",
"build:esm": "turbo run build:esm",
"build:cjs": "turbo run build:cjs",
"build:core": "turbo run --filter=\"./packages/*\" build",
"build:examples": "turbo run --filter=\"./examples/*\" build",
"prepare": "husky install",
"// release-please to robi // prerelease:ci": "lerna version --yes",
"release:ci": "lerna publish from-git --no-verify-access",
"// możliwe że będzie potrzebne // postrelease:ci": "git rebase main development && git push origin development --no-verify && git checkout main",
"start": "turbo run start"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@lerna-lite/cli": "^2.6.0",
"@lerna-lite/publish": "^2.6.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"concurrently": "^8.2.2",
"coveralls": "^3.1.1",
"esbuild": "^0.20.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.2",
"husky": "^8.0.1",
"jest": "^29.2.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"release-please": "^16.1.0",
"resolve-tspaths": "^0.8.19",
"rollup": "^2.67.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"turbo": "^1.10.16",
"typescript": "^5.0.4"
}
}