-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "reflexio",
"description": "Business flow manager, more than just state manager",
"keywords": [
"reflexio"
],
"scripts": {
"build": "lerna exec -- tsc",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint '**/*.{js,ts,tsx}'",
"format": "prettier --write '**/*.{js,ts,tsx}' && eslint '**/*.{js,ts,tsx}' --fix",
"typecheck": "tsc --noEmit",
"sizecheck": "lerna exec -- tsc && size-limit",
"release": "lerna version && lerna publish from-package",
"prepare": "[ -n \"$CI\" ] && exit 0 || husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rambler-digital-solutions/reflexio.git"
},
"author": "Konstantin Astapov",
"license": "MIT",
"private": true,
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@rambler-tech/commitlint-config": "^0.1.1",
"@rambler-tech/eslint-config": "^0.13.0",
"@rambler-tech/prettier-config": "^0.1.0",
"@rambler-tech/ts-config": "^0.1.1",
"@size-limit/preset-small-lib": "^11.1.2",
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"redux": "^4",
"size-limit": "^11.1.2",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"workspaces": [
"packages/*"
]
}