-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.17 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
{
"name": "personal",
"version": "1.0.0",
"description": "Personal web site",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --progress",
"build": "webpack",
"test:lint": "./node_modules/.bin/eslint app",
"test:styles": "./node_modules/.bin/stylelint ./app/less/**/*.less"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShvedDmutro/shveddmutro.github.io"
},
"author": "Shved Dmytro",
"license": "ISC",
"bugs": {
"url": "https://github.com/ShvedDmutro/Personal/issues"
},
"homepage": "https://github.com/ShvedDmutro/Personal#readme",
"dependencies": {
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"bootstrap-less": "^3.3.8",
"clean-webpack-plugin": "^0.1.10",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.23.1",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"markdown-it": "^7.0.1",
"open-browser-webpack-plugin": "0.0.2",
"postcss-loader": "^0.10.1",
"purifycss-webpack-plugin": "^2.0.3",
"react-hot-loader": "^1.3.0",
"react-icons": "^2.2.1",
"react-router": "^2.7.0",
"react-router-redux": "^4.0.5",
"style-loader": "^0.13.1",
"stylelint": "^7.1.0",
"stylelint-config-standard": "^12.0.0",
"stylelint-webpack-plugin": "^0.3.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0",
"webpack-merge": "^0.14.1",
"webpack-validator": "^2.2.7"
}
}