forked from web-pal/react-trello-board
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.92 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
{
"name": "React_trello_board",
"private": true,
"version": "0.0.1",
"description": "React trello board",
"scripts": {
"lint": "eslint src *.js",
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --config webpack.config.development.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.production.babel.js --progress --profile --colors"
},
"dependencies": {
"@babel/polyfill": "7.4.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"immutable": "4.0.0-rc.12",
"lodash": "^4.17.11",
"prettier": "^1.16.4",
"prop-types": "15.7.2",
"react": "^16.8.5",
"react-beautiful-dnd": "10.1.0",
"react-color": "^2.17.0",
"react-dom": "^16.8.5",
"react-markdown": "^4.0.6",
"react-redux": "^5.0.0",
"react-splitter-layout": "4.0.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"reselect": "^4.0.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.86.0",
"shortid": "^2.2.14",
"styled-components": "4.2.0",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.4.0",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/preset-env": "7.4.2",
"@babel/preset-react": "7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"classnames": "^2.2.6",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"react-hot-loader": "^4.8.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-cli": "3.3.0",
"webpack-dev-server": "^3.2.1"
}
}