-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
127 lines (127 loc) · 3.71 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
{
"name": "bypath",
"version": "0.1.0",
"description": "Build effector and react applications with ease",
"main": "dist/bypath.cjs.js",
"module": "dist/bypath.esm.js",
"unpkg": "dist/bypath.umd.js",
"types": "dist/bypath.d.ts",
"sideEffects": false,
"scripts": {
"test": "jest",
"build": "rollup -c",
"preview": "BABEL_ENV=test yarn babel -d ./dist './tests/*' './src/**' --extensions .ts",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/framework/bypath.git"
},
"files": [
"dist",
"babel-preset.js"
],
"keywords": [
"react",
"effector",
"feature",
"slices",
"typescript",
"framework",
"plugins",
"bypath"
],
"author": "Sergey Sova <[email protected]> (https://github.com/framework)",
"license": "MIT",
"bugs": {
"url": "https://github.com/framework/bypath/issues"
},
"homepage": "https://github.com/framework/bypath#readme",
"dependencies": {
"@loadable/component": "^5.15.0",
"debug": "^4.3.2"
},
"peerDependencies": {
"effector": "^22.2.0",
"history": "^4.9.0",
"patronum": "^1.8.2",
"react": "^16.14.0",
"react-router-config": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.2",
"@babel/plugin-proposal-object-rest-spread": "^7.14.4",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/plugin-transform-react-constant-elements": "^7.13.13",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@eslint-kit/eslint-config-base": "^4.0.0",
"@eslint-kit/eslint-config-node": "^2.0.0",
"@eslint-kit/eslint-config-prettier": "^3.0.0",
"@eslint-kit/eslint-config-react": "^3.0.0",
"@eslint-kit/eslint-config-typescript": "^5.0.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@testing-library/dom": "^7.31.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"@types/debug": "^4.1.7",
"@types/history": "^4.7.8",
"@types/jest": "^26.0.24",
"@types/loadable__component": "^5.13.3",
"@types/node": "^15.6.1",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@types/react-router": "^5.1.14",
"@types/react-router-config": "^5.0.2",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/parser": "4.15.0",
"babel-jest": "^27.0.6",
"babel-plugin-module-resolver": "^4.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"effector": "^22.2.0",
"eslint": "7.10.0",
"history": "^4.9.0",
"husky": "^6.0.0",
"import-sort-style-sova": "^0.1.0",
"jest": "^27.1.0",
"lint-staged": "^11.0.0",
"patronum": "^1.8.2",
"prettier": "2.2.1",
"prettier-plugin-import-sort": "^0.0.7",
"react": "16.14.0",
"react-dom": "^16.4.0",
"react-is": "16.13.1",
"react-router": "^5.2.0",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"rollup": "^2.50.5",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"importSort": {
".tsx, .ts": {
"style": "sova",
"parser": "typescript"
},
".js, .jsx": {
"style": "sova"
}
}
}