forked from mosen/micromdm-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.23 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
{
"name": "micromdm-ui",
"version": "0.0.1",
"description": "A front end for microMDM",
"main": "index.js",
"scripts": {
"dev": "BABEL_ENV=dev node devServer.js",
"test": "./node_modules/.bin/mocha --compilers js:babel-register",
"build": "./node_modules/.bin/webpack",
"lint": "./node_modules/.bin/eslint src",
"storybook": "./node_modules/.bin/start-storybook -p 9001 -s ./public --dont-track"
},
"author": "",
"license": "MIT",
"private": true,
"dependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-plugin-transform-react-remove-prop-types": "^0.2.7",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-register": "^6.9.0",
"base64-js": "^1.1.2",
"classnames": "^2.2.5",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.25.0",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"history": "^4.0.0",
"imports-loader": "^0.6.5",
"material-ui": "^0.16.0",
"moment": "^2.13.0",
"node-sass": "^3.7.0",
"postcss-loader": "^0.13.0",
"react": "^15.2.1",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.5",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-api-middleware": "^1.0.2",
"redux-auth-wrapper": "^0.8.0",
"redux-debounce": "^1.0.1",
"redux-form": "^6.0.0",
"redux-form-material-ui": "^4.1.0",
"redux-localstorage": "^1.0.0-rc5",
"redux-localstorage-filter": "^0.1.1",
"redux-thunk": "^2.1.0",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^4.0.0",
"semver": "^5.3.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1"
},
"devDependencies": {
"@kadira/storybook": "^2.0.0",
"babel-eslint": "^7.0.0",
"babel-plugin-istanbul": "^2.0.1",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.2",
"cheerio": "^0.22.0",
"enzyme": "^2.3.0",
"eslint": "^3.7.1",
"eslint-config-standard": "^6.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-react": "^6.4.0",
"eslint-plugin-standard": "^2.0.1",
"karma": "^1.1.0",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^3.0.0",
"nock": "^8.0.0",
"react-addons-test-utils": "^15.2.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.6",
"redux-mock-store": "^1.1.2",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.16.1",
"webpack-hot-middleware": "^2.10.0"
}
}