mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-14 00:06:02 -05:00
Some checks are pending
API / build (push) Waiting to run
Server CI / Compute Go Version (push) Waiting to run
Server CI / Check mocks (push) Blocked by required conditions
Server CI / Check go mod tidy (push) Blocked by required conditions
Server CI / check-style (push) Blocked by required conditions
Server CI / Check serialization methods for hot structs (push) Blocked by required conditions
Server CI / Vet API (push) Blocked by required conditions
Server CI / Check migration files (push) Blocked by required conditions
Server CI / Generate email templates (push) Blocked by required conditions
Server CI / Check store layers (push) Blocked by required conditions
Server CI / Check mmctl docs (push) Blocked by required conditions
Server CI / Postgres with binary parameters (push) Blocked by required conditions
Server CI / Postgres (push) Blocked by required conditions
Server CI / Postgres (FIPS) (push) Blocked by required conditions
Server CI / Generate Test Coverage (push) Blocked by required conditions
Server CI / Run mmctl tests (push) Blocked by required conditions
Server CI / Run mmctl tests (FIPS) (push) Blocked by required conditions
Server CI / Build mattermost server app (push) Blocked by required conditions
Web App CI / check-lint (push) Waiting to run
Web App CI / check-i18n (push) Blocked by required conditions
Web App CI / check-types (push) Blocked by required conditions
Web App CI / test (platform) (push) Blocked by required conditions
Web App CI / test (mattermost-redux) (push) Blocked by required conditions
Web App CI / test (channels shard 1/4) (push) Blocked by required conditions
Web App CI / test (channels shard 2/4) (push) Blocked by required conditions
Web App CI / test (channels shard 3/4) (push) Blocked by required conditions
Web App CI / test (channels shard 4/4) (push) Blocked by required conditions
Web App CI / upload-coverage (push) Blocked by required conditions
Web App CI / build (push) Blocked by required conditions
67 lines
2 KiB
JSON
67 lines
2 KiB
JSON
{
|
|
"name": "mattermost-redux",
|
|
"version": "11.3.0",
|
|
"description": "Common code (API client, Redux stores, logic, utility functions) for building a Mattermost client",
|
|
"keywords": [
|
|
"mattermost"
|
|
],
|
|
"homepage": "https://github.com/mattermost/mattermost/tree/master/webapp/platform/mattermost-redux#readme",
|
|
"license": "MIT",
|
|
"type": "commonjs",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"exports": {
|
|
"./action_types": "./lib/action_types/index.js",
|
|
"./actions": "./lib/actions/index.js",
|
|
"./client": "./lib/client/index.js",
|
|
"./constants": "./lib/constants/index.js",
|
|
"./reducers": "./lib/reducers/index.js",
|
|
"./reducers/entities": "./lib/reducers/entities/index.js",
|
|
"./reducers/entities/threads": "./lib/reducers/entities/threads/index.js",
|
|
"./reducers/errors": "./lib/reducers/errors/index.js",
|
|
"./reducers/requests": "./lib/reducers/requests/index.js",
|
|
"./selectors/create_selector": "./lib/selectors/create_selector/index.js",
|
|
"./store": "./lib/store/index.js",
|
|
"./*": "./lib/*.js"
|
|
},
|
|
"typesVersions": {
|
|
">=3.1": {
|
|
"*": [
|
|
"./lib/*.d.ts",
|
|
"./lib/*/index.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/mattermost/mattermost.git",
|
|
"directory": "webapp/platform/mattermost-redux"
|
|
},
|
|
"dependencies": {
|
|
"@mattermost/client": "11.3.0",
|
|
"@mattermost/types": "11.3.0",
|
|
"@redux-devtools/extension": "3.3.0",
|
|
"lodash": "^4.17.21",
|
|
"moment-timezone": "^0.5.38",
|
|
"redux": "^5.0.0",
|
|
"redux-batched-actions": "0.5.0",
|
|
"redux-thunk": "^3.0.0",
|
|
"serialize-error": "^11.0.3",
|
|
"shallow-equals": "^1.0.0",
|
|
"timezones.json": "^1.7.1"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^4.3.0 || ^5.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"typescript": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --build --verbose",
|
|
"postbuild": "sh postbuild.sh",
|
|
"clean": "rm -rf lib node_modules *.tsbuildinfo"
|
|
}
|
|
}
|