forked from urfu-2015/webdev-tasks-5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.4 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
{
"name": "todo-touch",
"version": "0.0.1",
"description": "В отзывах вы писали нам, что задачи стали простые и однобокие, и мы решили подготовить сложную и многобокую задачу, а именно – реализовать целый сервис «TODOхи» для ведения списка задач.",
"main": "app.js",
"scripts": {
"build": "webpack",
"build:prod": "SET NODE_ENV=production && webpack",
"dev": "npm-run-all build:dev start",
"lint:js": "eslint --fix .",
"lint:css": "stylelint **/*.css",
"lint": "npm-run-all lint:*",
"start": "node app.js",
"test": "echo \"Error: no test specified\"",
"precommit": "npm-run-all lint:* test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DudaGod/webdev-tasks-5.git"
},
"author": "Dmitriy Dudkevich",
"license": "MIT",
"bugs": {
"url": "https://github.com/DudaGod/webdev-tasks-5/issues"
},
"homepage": "https://github.com/DudaGod/webdev-tasks-5#readme",
"dependencies": {
"body-parser": "1.15.0",
"co": "4.6.0",
"config": "1.20.1",
"express": "4.13.4",
"file-loader": "0.8.5",
"hbs": "4.0.0",
"isomorphic-fetch": "2.2.1",
"react": "15.0.2",
"react-dom": "15.0.2",
"react-hot-loader": "^3.0.0-beta.1",
"react-redux": "4.4.5",
"redux": "3.5.2",
"redux-logger": "2.6.1",
"redux-thunk": "2.1.0"
},
"devDependencies": {
"autoprefixer": "6.3.6",
"babel-core": "6.8.0",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"css-loader": "0.23.1",
"cssnano": "3.5.2",
"error-handler": "1.0.0",
"eslint": "2.9.0",
"eslint-config-xo": "0.14.1",
"eslint-loader": "1.3.0",
"eslint-plugin-react": "5.1.1",
"extract-text-webpack-plugin": "1.0.1",
"morgan": "1.7.0",
"postcss-loader": "0.9.1",
"react-hot-loader": "1.3.0",
"redux-devtools": "3.3.1",
"redux-devtools-dock-monitor": "1.1.1",
"redux-devtools-log-monitor": "1.0.11",
"style-loader": "0.13.1",
"stylelint": "6.3.3",
"stylelint-config-standard": "7.0.0",
"surge": "0.18.0",
"webpack": "1.13.0",
"webpack-dev-middleware": "1.6.1",
"webpack-dev-server": "1.14.1",
"webpack-hot-middleware": "2.10.0"
}
}