forked from mattermost/mattermost-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.53 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
{
"name": "mattermost-redux",
"version": "5.3.1",
"description": "Common code (API client, Redux stores, logic, utility functions) for building a Mattermost client",
"homepage": "https://github.com/mattermost/mattermost-redux",
"license": "Apache-2.0",
"repository": "github:mattermost/mattermost-redux",
"bugs": {
"url": "https://github.com/mattermost/mattermost-redux/issues"
},
"dependencies": {
"deep-equal": "1.0.1",
"eslint-plugin-header": "3.0.0",
"form-data": "2.3.3",
"gfycat-sdk": "1.4.18",
"harmony-reflect": "1.6.1",
"isomorphic-fetch": "2.2.1",
"mime-db": "1.40.0",
"moment-timezone": "0.5.25",
"redux": "4.0.1",
"redux-action-buffer": "1.2.0",
"redux-batched-actions": "0.4.1",
"redux-offline": "git+https://github.com/enahum/redux-offline.git#4bd85e7e3b279a2b11fb4d587808d583d2b5e7b5",
"redux-persist": "4.9.1",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"serialize-error": "2.1.0",
"shallow-equals": "1.0.0"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-transform-flow-comments": "7.4.4",
"@babel/preset-env": "7.2.0",
"@babel/register": "7.4.4",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.8.0",
"babel-loader": "8.0.6",
"babel-plugin-module-resolver": "3.2.0",
"chai": "4.2.0",
"deep-freeze": "0.0.1",
"eslint": "5.16.0",
"eslint-config-mattermost": "github:mattermost/eslint-config-mattermost",
"eslint-plugin-flowtype": "3.7.0",
"eslint-plugin-jest": "22.6.4",
"expect": "24.8.0",
"fetch-mock": "7.3.3",
"flow-bin": "0.95.1",
"flow-typed": "2.5.1",
"jest": "24.8.0",
"jest-cli": "24.8.0",
"jest-junit": "6.4.0",
"mock-socket": "8.0.5",
"nock": "10.0.6",
"react": "16.8.6",
"redux-mock-store": "1.5.3",
"redux-persist-node-storage": "2.0.0",
"remote-redux-devtools": "0.5.16",
"uglifyjs-webpack-plugin": "2.1.3",
"webpack": "4.32.2",
"ws": "7.0.0"
},
"scripts": {
"build": "babel src --out-dir . --ignore '**/*.test.js'",
"webpack": "webpack",
"dev": "babel src --out-dir ${WEBAPP_DIR:-../mattermost-webapp}/node_modules/mattermost-redux --source-maps",
"dev-mobile": "babel src --out-dir ${MOBILE_DIR:-../mattermost-mobile}/node_modules/mattermost-redux --source-maps",
"dev:watch": "babel --watch src --out-dir ${WEBAPP_DIR:-../mattermost-webapp}/node_modules/mattermost-redux --source-maps",
"dev-mobile:watch": "babel --watch src --out-dir ${MOBILE_DIR:-../mattermost-mobile}/node_modules/mattermost-redux --source-maps",
"check": "eslint --ignore-path .gitignore --ignore-pattern node_modules --quiet .",
"fix": "eslint --ignore-path .gitignore --ignore-pattern node_modules --quiet . --fix",
"flow": "flow",
"flow-typed": "flow-typed",
"test": "jest --forceExit --detectOpenHandles --maxWorkers=2",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "npm run build"
},
"jest": {
"clearMocks": true,
"collectCoverageFrom": [
"src/**/*.{js}"
],
"coverageReporters": [
"lcov",
"text-summary"
],
"reporters": [
"default",
"jest-junit"
],
"setupFilesAfterEnv": [
"<rootDir>/test/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"jest-junit": {
"output": "build/test-results.xml"
}
}