-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
88 lines (88 loc) · 2.56 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
{
"name": "repluggable",
"version": "1.302.58",
"license": "MIT",
"description": "Allows composition of a React-with-Redux application entirely from a list of pluggable packages",
"main": "dist/src/index.js",
"module": "dist/es/src/index.js",
"unpkg": true,
"author": {
"name": "Wix.com",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/wix/repluggable"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"versionBumpStrategy": "patch"
},
"files": [
"*"
],
"scripts": {
"start": "webpack-dev-server --hot --config webpack.local.config.js",
"build": "rm -rf dist && yarn build-cjs && yarn build-es && yarn build-bundle-dev && yarn build-bundle-prod",
"build-cjs": "tsc --outDir dist --module commonjs",
"build-es": "tsc --outDir dist/es --module esNext",
"build-bundle-dev": "webpack --config webpack.dev.config.js",
"build-bundle-prod": "webpack --config webpack.prod.config.js",
"test": "jest --coverage",
"posttest": "tslint --project .",
"lintfix": "tslint --fix --project ."
},
"dependencies": {
"react-test-renderer": "^18.0.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"tslib": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.162",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-test-renderer": "^18.0.0",
"@types/webpack-env": "^1.15.3",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"husky": "^4.3.0",
"jest": "^26.6.0",
"jest-teamcity-reporter": "^0.9.0",
"lint-staged": "^10.4.2",
"lodash": "^4.17.20",
"prettier": "^2.1.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-redux": "^8.0.0",
"terser-webpack-plugin": "^4.1.0",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react": "^5.0.0",
"tslint-react-hooks": "^2.2.2",
"typescript": "^5.4.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"resolutions": {
"node-forge": "^1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"(src|test|testKit)/**/*.{ts,tsx}": [
"tslint --project ."
]
}
}