-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.43 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
{
"name": "@rambler-tech/react-toolkit",
"version": "0.0.0",
"description": "Toolkit for server-side rendered route based apps built with React and React Router",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"exports": {
"./client": "dist/client/index.js",
"./server": "dist/server/index.js"
},
"typesVersions": {
"*": {
"client": [
"dist/client/index.d.ts"
],
"server": [
"dist/server/index.d.ts"
]
}
},
"author": "Andrey Polischuk <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/rambler-digital-solutions/react-toolkit.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"scripts": {
"build": "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": "tsc && size-limit",
"licenselint": "licenselint",
"docs": "typedoc",
"release": "semantic-release",
"prepare": "[ -n \"$CI\" ] && exit 0 || husky install"
},
"dependencies": {
"superjson": "^2.2.0"
},
"peerDependencies": {
"express": "^4.18.2",
"react": ">=18",
"react-dom": ">=18",
"react-router-dom": ">=6"
},
"devDependencies": {
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@rambler-tech/eslint-config": "^0.10.4",
"@rambler-tech/licenselint": "^1.3.0",
"@rambler-tech/licenselint-config": "^0.0.2",
"@rambler-tech/prettier-config": "^0.1.0",
"@rambler-tech/ts-config": "^0.1.0",
"@rambler-tech/typedoc-config": "^0.3.0",
"@size-limit/preset-small-lib": "^9.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.2.5",
"@types/node": "^20.8.2",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"express": "^4.18.2",
"history": "^5.3.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0",
"semantic-release": "22.0.5",
"size-limit": "^9.0.0",
"ts-jest": "^29.0.4",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
}
}