-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.85 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
106
107
108
109
110
111
112
113
{
"name": "orion-ui",
"license": "ISC",
"version": "0.0.1",
"description": "Orion Experience",
"scripts": {
"clean": "rimraf dist",
"build": "webpack --config webpack.config.prod.js",
"dev": "node devServer",
"start": "npm-run-all clean dev",
"start:test": "WEBPACK_CONFIG=webpack.config.test npm-run-all clean dev",
"lint": "eslint src/js",
"postinstall": "node nightwatch.conf.js",
"test:functional": "./node_modules/.bin/nightwatch"
},
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"moduleFileExtensions": [
"js",
"json"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,mjs}"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/redux",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/enzyme",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/immutable/",
"<rootDir>/node_modules/lodash",
"<rootDir>/node_modules/moment",
"<rootDir>/node_modules/classnames"
]
},
"dependencies": {
"axios": "^0.17.1",
"bootstrap": "^3.3.7",
"classnames": "^2.2.5",
"font-awesome": "^4.7.0",
"history": "^4.7.2",
"immutable": "^3.8.2",
"lodash": "^4.17.4",
"moment": "^2.20.1",
"prop-types": "^15.6.0",
"react": "^15.4.2",
"react-bootstrap": "^0.31.5",
"react-bootstrap-date-picker": "^5.1.0",
"react-data-grid": "github.com/paulorsouza/react-data-grid.git",
"react-data-grid-addons": "^3.0.3",
"react-dom": "^15.4.2",
"react-grid-layout": "^0.16.0",
"react-images": "^0.5.14",
"react-number-format": "^3.1.3",
"react-page-click": "^4.0.2",
"react-pivottable": "^0.3.1",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-sizeme": "^2.3.6",
"react-sortable-hoc": "^0.6.8",
"react-tether": "^0.6.0",
"react-virtualized": "^9.18.5",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"sha256": "^0.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-1": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.1.2",
"jest-cli": "^22.1.2",
"nightwatch": "^0.9.19",
"node-sass": "^4.7.2",
"npm-run-all": "^4.1.2",
"react-test-renderer": "15",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"selenium-download": "^2.0.11",
"service-mocker": "^2.1.2",
"style-loader": "^0.19.0",
"sw-loader": "^0.1.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.5",
"webpack-encoding-plugin": "^0.2.1",
"webpack-hot-middleware": "^2.21.0",
"write-file-webpack-plugin": "^4.2.0"
}
}