forked from rifflearning/mattermost-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 3.14 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
{
"name": "mattermost-redux",
"version": "5.5.0",
"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": "1.2.0",
"form-data": "2.3.2",
"gfycat-sdk": "1.4.18",
"harmony-reflect": "1.6.0",
"isomorphic-fetch": "2.2.1",
"mime-db": "1.33.0",
"redux": "4.0.0",
"redux-action-buffer": "1.2.0",
"redux-batched-actions": "0.3.0",
"redux-offline": "git+https://github.com/enahum/redux-offline.git#4bd85e7e3b279a2b11fb4d587808d583d2b5e7b5",
"redux-persist": "4.9.1",
"redux-thunk": "2.2.0",
"reselect": "3.0.1",
"serialize-error": "2.1.0",
"shallow-equals": "1.0.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-loader": "7.1.4",
"babel-plugin-module-resolver": "3.1.1",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-flow": "6.23.0",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.1.2",
"deep-freeze": "0.0.1",
"eslint": "4.19.1",
"eslint-plugin-flowtype": "2.46.3",
"eslint-plugin-mocha": "5.0.0",
"fetch-mock": "6.4.2",
"flow-bin": "0.72.0",
"flow-copy-source": "1.3.0",
"flow-typed": "2.4.0",
"mocha": "5.1.1",
"mocha-junit-reporter": "^1.17.0",
"mocha-multi-reporters": "^1.1.7",
"mock-socket": "7.1.0",
"nock": "9.2.6",
"react": "16.3.2",
"redux-persist-node-storage": "2.0.0",
"remote-redux-devtools": "0.5.12",
"remote-redux-devtools-on-debugger": "0.8.3",
"uglifyjs-webpack-plugin": "1.2.5",
"webpack": "3.5.5",
"ws": "5.1.1"
},
"scripts": {
"build": "babel src --out-dir .",
"webpack": "webpack",
"dev": "babel src --out-dir ${WEBAPP_DIR:-../mattermost-webapp}/node_modules/mattermost-redux --source-maps && npm run dev:flow-copy",
"dev:flow-copy": "flow-copy-source src ${WEBAPP_DIR:-../mattermost-webapp}/node_modules/mattermost-redux",
"dev-mobile": "babel src --out-dir ${MOBILE_DIR:-../mattermost-mobile}/node_modules/mattermost-redux --source-maps && npm run dev-mobile:flow-copy",
"dev-mobile:flow-copy": "flow-copy-source src ${MOBILE_DIR:-../mattermost-webapp}/node_modules/mattermost-redux",
"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": "NODE_ENV=test mocha --opts test/mocha.opts",
"prepare": "npm run build"
}
}