-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
136 lines (136 loc) · 3.21 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "makenews",
"version": "1.0.0",
"description": "",
"private": true,
"author": "",
"dependencies": {
"babel-runtime": "^6.26.0",
"body-parser": "^1.19.0",
"cheerio": "^0.22.0",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"feedparser": "^2.2.9",
"file-saver": "^1.3.3",
"helmet": "^3.21.0",
"helmet-csp": "^2.9.1",
"isomorphic-fetch": "^2.2.1",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"oauth": "^0.9.15",
"prop-types": "^15.7.2",
"ramda": "^0.26.1",
"react": "^15.3.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^15.3.2",
"react-quill": "^1.0.0",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-shallow-testutils": "^2.0.0",
"read-art": "^0.5.6",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"sanitize-html": "^1.20.1",
"winston": "^2.3.0",
"yargs": "^14.0.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cordova-lib": "^9.0.1",
"del": "^5.1.0",
"enzyme": "^2.7.1",
"eslint": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-security": "^1.4.0",
"forever": "^1.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^7.0.1",
"gulp-cssnano": "^2.1.3",
"gulp-envify": "^1.0.0",
"gulp-environments": "^0.1.2",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-uglify": "^3.0.2",
"history": "^3.0.0",
"husky": "^3.1.0",
"jsdom": "^15.1.1",
"lint-staged": "^9.5.0",
"mocha": "^6.2.0",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"sinon": "^1.17.6",
"supertest": "^4.0.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"build": "gulp build",
"gulp": "gulp",
"lint": "eslint \"**/*.{js,jsx}\"",
"prestart": "npm run build",
"start": "node dist/server",
"test": "TZ=UTC mocha",
"test:coverage": "TZ=UTC nyc mocha"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint && npm test"
}
},
"lint-staged": {
"*{.js,jsx}": [
"eslint --fix"
]
},
"eslintIgnore": [
"node_modules/",
".idea",
"dist",
".nyc_output",
"coverage"
],
"mocha": {
"require": [
"babel-register"
],
"spec": [
"client/test/helper/*.js",
"server/test/helpers/*.js",
"client/test/**/*.js",
"client/test/**/*.jsx",
"common/test/**/*.js",
"server/test/**/*.js"
]
},
"nyc": {
"exclude": [
"client/test/**/*.js",
"common/test/**/*.js",
"server/test/**/*.js"
],
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
]
}
}