-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.37 KB
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
{
"name": "kanban_todo",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "node devserver.js",
"build": "cross-env NODE_ENV=production DEBUG=false VERSION=0.2.0 webpack --config webpack-production.config.js",
"test": "mocha --compilers js:babel-core/register --require ./test/setup.js ./test/*.spec.js --watch",
"lint": "eslint src --ext js,jsx"
},
"keywords": [],
"browserslist": [
"chrome 59"
],
"author": "Oleksii Dubok, oleksii.dubok@gmail.com",
"license": "ISC",
"dependencies": {
"autoprefixer": "^7.1.1",
"babel-polyfill": "^6.23.0",
"browserslist": "^2.1.5",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"react": "^15.6.0",
"react-dom": "^15.6.0",
"react-modal": "^1.9.4",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"react-transition-group": "^1.2.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"uuid": "^3.1.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-dynamic-import-node": "^1.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"classnames": "^2.2.5",
"cross-env": "^4.0.0",
"css-loader": "^0.28.1",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-fetch": "0.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-more": "^0.3.1",
"eslint-plugin-no-require-lodash": "^1.1.0",
"eslint-plugin-prefer-spread": "^1.0.3",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.28.0",
"image-webpack-loader": "^3.3.1",
"jsdom": "9.6.0",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"mocha": "^3.3.0",
"postcss-loader": "^2.0.5",
"progress-bar-webpack-plugin": "^1.9.3",
"prop-types": "^15.5.8",
"react-hot-loader": "^3.0.0-beta.7",
"react-svg-loader": "^1.1.1",
"redux-devtools-extension": "^2.13.2",
"style-loader": "^0.17.0",
"url-loader": "^0.5.9",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
}
}