-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.41 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
{
"name": "react-mobx-webpack-seed",
"version": "1.1.10",
"description": "a boiler plate for React, MobX and Webpack application with tests and coverage.",
"main": "./index.jsx",
"repository": {
"type": "git",
"url": "https://github.com/alonronin/react-mobx-webpack-seed.git"
},
"scripts": {
"build": "webpack --config webpack.config.prod.js -p --optimize-dedupe",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "trash dist",
"cover": "nyc npm t",
"cover-view": "serve coverage/lcov-report",
"dev": "webpack --config webpack.config.dev.js -d --progress --colors",
"lint": "eslint src --ext .jsx,.js",
"lint-fix": "npm run lint -- --fix",
"prebuild": "npm run clean && npm run lint",
"recommend-bump": "conventional-recommended-bump -p angular",
"start": "webpack-dev-server --config webpack.config.dev.js -d --open --history-api-fallback --hot --inline --progress --colors --content-base ./dist --port 8100",
"start-autofix": "cross-env autofix='true' npm run start",
"test": "mocha --opts mocha.opts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-polyfill": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"chai": "^3.5.0",
"conventional-changelog-cli": "^1.2.0",
"conventional-recommended-bump": "^0.3.0",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"enzyme": "^2.5.1",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.10.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.24.1",
"ignore-styles": "^5.0.1",
"jsdom": "^9.8.3",
"json-loader": "^0.5.4",
"mobx-react-devtools": "^4.2.9",
"mocha": "^3.1.2",
"nyc": "^10.0.0",
"postcss-import": "^9.0.0",
"postcss-loader": "^1.1.0",
"postcss-mixins": "^5.4.0",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^3.0.0",
"react-addons-test-utils": "^15.4.1",
"rucksack-css": "^0.9.1",
"serve": "^3.3.1",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"trash-cli": "^1.4.0",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.3"
},
"dependencies": {
"bluebird": "^3.4.6",
"bootstrap": "^4.0.0-alpha.6",
"classnames": "^2.2.5",
"lodash": "^4.17.0",
"mobx": "^3.1.0",
"mobx-react": "^4.0.3",
"react": "^15.3.2",
"react-addons-css-transition-group": "^15.3.2",
"react-addons-transition-group": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "^3.0.0",
"react-select": "1.0.0-rc.3",
"reactstrap": "^4.2.0"
},
"nyc": {
"lines": 95,
"exclude": [
"**/*.spec.js"
],
"include": [
"src/app/**/*.js",
"src/app/**/*.jsx"
],
"extension": [
".jsx"
],
"reporter": [
"lcov",
"text",
"text-summary"
],
"check-coverage": true,
"report-dir": "./coverage"
}
}