-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.75 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "news-website",
"author": "yarphen",
"version": "0.0.1",
"description": "",
"keywords": [],
"license": "MIT",
"main": "server.js",
"scripts": {
"build": "rimraf ./dist && webpack --config config/webpack.config.js --mode production",
"dev": "webpack-dev-server --config config/webpack.config.js --open --mode development",
"start": "node server",
"stats": "webpack --config config/webpack.config.js --json > stats.json",
"stats:serve": "webpack-bundle-analyzer stats.json ./dist -p 8088",
"lint": "eslint --ext .js --ext .jsx .",
"lint:fix": "eslint --fix --ext .js --ext .jsx .",
"no-unstaged": "git diff --exit-code --name-only --quiet",
"test": "jest tests/**/**.spec.js"
},
"precommit": [
"no-unstaged",
"lint"
],
"dependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"classnames": "^2.2.6",
"connected-react-router": "^6.3.1",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"dotenv-webpack": "^1.7.0",
"express": "^4.16.4",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"query-string": "^6.7.0",
"react": "^16.8.2",
"react-click-outside": "^3.0.1",
"react-dom": "^16.8.2",
"react-helmet": "^5.2.1",
"react-lines-ellipsis": "^0.14.1",
"react-redux": "^6.0.0",
"react-responsive": "^7.0.0",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"request": "^2.88.0",
"reselect": "^4.0.0",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"webpack": "^4.29.4",
"webpack-cli": "^3.2.3",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"create-file-webpack": "^1.0.2",
"eslint": "^5.14.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-react": "^7.12.4",
"jest": "^23.6.0",
"pre-commit": "^1.2.2",
"precommit": "^1.2.2",
"react-test-renderer": "^16.8.6",
"webpack-bundle-analyzer": "^3.0.4",
"webpack-dev-server": "^3.1.14"
},
"repository": {
"type": "git",
"url": "https://github.com/yarphen/news-website"
},
"bugs": "https://github.com/yarphen/news-website/issues"
}