-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.87 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "sozluk-react",
"version": "0.0.1",
"description": "A reactive web interface for saü sözlük",
"repository": {
"type": "git",
"url": "git://github.com/sausozluk/sozluk-react.git"
},
"scripts": {
"prebuild": "npm run build:clean",
"build": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.prod.babel.js --color -p --progress --hide-modules --display-optimization-bailout",
"build:clean": "rimraf ./build",
"build:dll": "node ./internals/scripts/dependencies.js",
"start": "cross-env NODE_ENV=development node server",
"start:prod": "npm run build && cross-env NODE_ENV=production node server",
"lint": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts -- .",
"test": "cross-env NODE_ENV=test jest --coverage",
"test:watch": "cross-env NODE_ENV=test jest --watchAll",
"test:clean": "rimraf ./coverage",
"clean:all": "npm run test:clean && npm run build:clean"
},
"dllPlugin": {
"path": "node_modules/sozluk-react-dlls",
"exclude": [
"compression",
"cross-env",
"express",
"sanitize.css"
],
"include": [
"core-js",
"lodash",
"eventsource-polyfill"
]
},
"dependencies": {
"@fortawesome/fontawesome": "^1.1.4",
"@fortawesome/fontawesome-free-solid": "^5.0.8",
"@fortawesome/react-fontawesome": "^0.0.17",
"babel-polyfill": "6.23.0",
"compression": "1.6.2",
"cross-env": "5.0.0",
"express": "4.15.3",
"fontfaceobserver": "2.0.9",
"history": "4.6.3",
"hoist-non-react-statics": "2.1.1",
"immutable": "3.8.1",
"invariant": "2.2.2",
"lodash": "4.17.4",
"prop-types": "15.5.10",
"react": "15.6.1",
"react-autocomplete": "^1.8.1",
"react-custom-scrollbars": "^4.2.1",
"react-dd-menu": "^2.0.2",
"react-dom": "15.6.1",
"react-helmet": "5.1.3",
"react-loadable": "4.0.3",
"react-redux": "5.0.5",
"react-redux-loading-bar": "^3.1.2",
"react-router-dom": "4.1.1",
"react-router-redux": "5.0.0-alpha.6",
"redux": "3.6.0",
"redux-immutable": "4.0.0",
"redux-saga": "0.15.3",
"reselect": "3.0.1",
"sanitize.css": "4.1.0",
"styled-components": "2.0.0",
"whatwg-fetch": "2.0.3"
},
"devDependencies": {
"add-asset-html-webpack-plugin": "2.0.1",
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.0",
"babel-plugin-dynamic-import-node": "1.0.2",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-styled-components": "1.1.4",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-inline-elements": "6.22.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.5",
"babel-preset-env": "1.5.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"circular-dependency-plugin": "3.0.0",
"css-loader": "0.28.4",
"enzyme": "2.8.2",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.1",
"eslint-config-airbnb-base": "11.2.0",
"eslint-import-resolver-webpack": "0.8.3",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-react": "7.0.1",
"eslint-plugin-redux-saga": "0.3.0",
"eventsource-polyfill": "0.9.6",
"exports-loader": "0.6.4",
"file-loader": "0.11.1",
"html-loader": "0.4.5",
"html-webpack-plugin": "2.29.0",
"image-webpack-loader": "2.0.0",
"imports-loader": "0.7.1",
"jest-cli": "20.0.4",
"jest-styled-components": "^5.0.0",
"node-plop": "0.7.0",
"null-loader": "0.1.1",
"react-test-renderer": "15.6.1",
"rimraf": "2.6.1",
"shelljs": "0.7.7",
"style-loader": "0.18.1",
"url-loader": "0.5.8",
"webpack": "3.5.5",
"webpack-dev-middleware": "1.11.0",
"webpack-hot-middleware": "2.18.0"
}
}