-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 3.19 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
{
"name": "react-cabinet",
"version": "0.1.5",
"description": "react+mobx admin panel",
"files": [
"*.md",
"docs",
"lib",
"src"
],
"main": "lib/index",
"scripts": {
"clean": "rimraf lib/*",
"copy": "copyfiles -u 1 \"./src/static/**\" ./lib",
"build": "set NODE_ENV=production && babel ./src -d lib --ignore '*.spec.js' && npm run copy",
"lint": "eslint ./src",
"posttest": "npm run lint",
"release:major": "npm version prerelease && git push --follow-tags && npm publish --tag beta",
"release:minor": "npm version prerelease && git push --follow-tags && npm publish --tag beta",
"release:patch": "npm version prerelease && git push --follow-tags && npm publish --tag beta",
"test": "cross-env NODE_ENV=test karma start",
"test:watch": "cross-env NODE_ENV=test karma start --autoWatch=true --singleRun=false --reporters=mocha,coverage",
"example": "cd example && webpack-dev-server --hot --inline --config ./webpack.config.js"
},
"repository": "https://github.com/kenorld/react-cabinet",
"keywords": [],
"author": "Chrislearn Young <[email protected]> (http://chrislearn.im)",
"devDependencies": {
"aor-json-rest-client": "~2.0.0",
"aor-rich-text-input": "~1.0.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-native-modules": "^6.9.4",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.0",
"copyfiles": "^1.2.0",
"css-loader": "^0.28.4",
"enzyme": "^2.9.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"file-loader": "^0.11.2",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"mobx-react-form-devtools": "^1.7.0",
"mocha": "^3.5.0",
"null-loader": "^0.1.1",
"phantomjs-prebuilt": "^2.1.14",
"postcss": "^6.0.8",
"postcss-loader": "^2.0.6",
"react-addons-test-utils": "^15.6.0",
"rimraf": "^2.6.1",
"sinon": "^3.0.0",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"dependencies": {
"cross-env": "^5.0.3",
"inflection": "^1.12.0",
"lodash.defaultsdeep": "^4.6.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"material-ui": "^0.18.7",
"mobx": "^3.2.2",
"mobx-persist": "^0.3.3",
"mobx-react": "^4.2.2",
"mobx-react-form": "^1.31.16",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-tap-event-plugin": "^2.0.1"
}
}