-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (88 loc) · 2.75 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": "react-kinetic-core",
"version": "0.5.4",
"description": "Utilities and components for development with React and Kinetic Core",
"author": "Kinetic Data, Inc",
"license": "MIT",
"main": "dist/react-kinetic-core.js",
"scripts": {
"start": "webpack-dashboard -c magenta -- webpack-dev-server",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=production webpack",
"test": "jest",
"test:watch": "jest --watch --notify",
"test:ci": "jest --ci --testResultsProcessor=./node_modules/jest-junit-reporter"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bootstrap": "^3.3.7",
"codemirror": "^5.25.2",
"connected-react-router": "^4.2.1",
"cross-env": "^4.0.0",
"css-loader": "^0.28.1",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.1.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jest": "^20.0.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"file-loader": "^0.11.1",
"history": "^4.6.1",
"isomorphic-fetch": "^2.2.1",
"jest": "^22.4.3",
"jest-junit-reporter": "^1.1.0",
"node-sass": "^4.5.2",
"react": "^15.6.2",
"react-addons-test-utils": "^15.6.2",
"react-bootstrap": "^0.31.0",
"react-codemirror": "^0.3.0",
"react-dom": "^15.6.2",
"react-hot-loader": "3.0.0-beta.6",
"react-refetch": "^1.0.0",
"react-router-bootstrap": "^0.24.2",
"react-router-dom": "^4.1.1",
"react-test-renderer": "^15.5.4",
"redux-form": "5.3.4",
"redux-promise": "^0.5.3",
"regenerator-runtime": "^0.10.5",
"rimraf": "^2.6.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^2.5.1",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"axios": "^0.16.1",
"deepequal": "^0.0.1",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"react-redux": "^5.0.4",
"redux": "^3.6.0"
},
"peerDepdendencies": {
"react": "^15.6.2",
"react-dom": "^15.6.2"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss|sass)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}