forked from mattermost/mattermost-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.97 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
{
"name": "mattermost-redux",
"version": "1.1.0",
"dependencies": {
"deep-equal": "1.0.1",
"form-data": "2.3.1",
"harmony-reflect": "1.5.1",
"isomorphic-fetch": "2.2.1",
"mime-db": "1.30.0",
"redux": "3.7.2",
"redux-action-buffer": "1.1.0",
"redux-batched-actions": "0.2.0",
"redux-offline": "git+https://github.com/enahum/redux-offline.git",
"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.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.2",
"babel-plugin-module-resolver": "2.7.1",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.26.0",
"chai": "3.5.0",
"deep-freeze": "0.0.1",
"eslint": "3.19.0",
"eslint-plugin-mocha": "4.11.0",
"fetch-mock": "5.12.2",
"jsdom": "9.12.0",
"jsdom-global": "2.1.1",
"mocha": "3.5.3",
"mock-socket": "7.0.0",
"nock": "9.0.14",
"react": "15.6.1",
"redux-persist-node-storage": "1.0.2",
"remote-redux-devtools": "0.5.12",
"remote-redux-devtools-on-debugger": "0.7.1",
"uglifyjs-webpack-plugin": "0.4.6",
"webpack": "3.5.5",
"ws": "2.3.1"
},
"scripts": {
"build": "babel src --out-dir .",
"webpack": "webpack",
"dev": "babel src --out-dir ${WEBAPP_DIR:-../mattermost-webapp}/node_modules/mattermost-redux --source-maps",
"dev:watch": "babel --watch src --out-dir ${WEBAPP_DIR:-../mattermost-webapp}/node_modules/mattermost-redux --source-maps",
"check": "node_modules/.bin/eslint --ignore-path .gitignore --ignore-pattern node_modules --quiet .",
"test": "NODE_ENV=test mocha --opts test/mocha.opts",
"test-no-mock": "TEST_SERVER=1 NOCK_OFF=true NODE_ENV=test mocha --opts test/mocha.opts",
"prepublishOnly": "npm run build"
}
}