-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.74 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.74 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
79
80
81
82
83
84
85
86
87
{
"name": "frontender_magazine_admin_panel",
"version": "1.0.0",
"description": "Frontender Magazine Admin Panel",
"main": "webpack.config.js",
"scripts": {
"local": "webpack-dev-server --env local",
"prodBuild": "webpack --optimize-minimize --define process.env.NODE_ENV=\"'PROD'\"",
"lint:js": "eslint ./source/frontend/** --ext .jsx,.js --color -f stylish --fix",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FrontenderMagazineDevelopment/admin.git"
},
"author": "Anton Nemtsev",
"license": "ISC",
"bugs": {
"url": "https://github.com/FrontenderMagazineDevelopment/admin/issues"
},
"homepage": "https://github.com/FrontenderMagazineDevelopment/admin#readme",
"dependencies": {
"@frontender-magazine/fm-user": "^1.0.8",
"autoprefixer": "^7.1.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"body-parser": "^1.17.2",
"compression": "^1.6.1",
"connect": "^3.6.2",
"connect-query": "^1.0.0",
"cookie-parser": "^1.0.0",
"css-loader": "^0.28.4",
"dotenv": "^4.0.0",
"eslint-import-resolver-webpack": "^0.8.3",
"express-session": "^1.15.3",
"file-exists": "^4.0.0",
"html-webpack-plugin": "^2.28.0",
"postcss-clean": "^1.0.2",
"postcss-discard-empty": "^2.1.0",
"postcss-loader": "^2.0.5",
"precss": "^1.4.0",
"prop-types": "^15.5.10",
"pug": "^2.0.0-rc.1",
"pug-loader": "^2.3.0",
"qs": "^6.1.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "^3.0.0-beta.7",
"react-redux": "^5.0.5",
"redux": "^3.6.0",
"redux-form": "^7.1.2",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"redux-thunk": "^2.2.0",
"redux-wait-for-action": "0.0.7",
"request": "^2.69.0",
"style-loader": "^0.18.2",
"stylelint": "^8.2.0",
"svg-sprite-loader": "^3.0.5",
"svgo-loader": "^1.2.1",
"uuid": "^3.0.1",
"webpack": "^2.6.1",
"webpack-merge": "^4.1.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"stylefmt": "^6.0.0",
"stylelint-config-standard": "^16.0.0",
"webpack-dev-server": "^2.4.5"
}
}