-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
77 lines (77 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
73
74
75
76
77
{
"name": "gci-leaders",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"planet": "node ./lib/planet.js",
"scrape": "node ./lib/scrape.js",
"generate": "node ./lib/generate.js",
"gather": "node ./lib/gather.js",
"main": "node ./lib/main.js",
"clean": "rm -rf out/*",
"dev": "webpack-dev-server --progress",
"bundle": "NODE_ENV=production webpack --progress",
"build": "npm run bundle && npm run gather && npm run scrape && npm run planet && npm run main && npm run generate",
"build:clean": "npm run clean && npm run build",
"test": "jest"
},
"keywords": [],
"author": "blazeu <[email protected]>",
"license": "MIT",
"dependencies": {
"chattie": "0.0.4",
"cheerio": "^1.0.0-rc.2",
"deep-diff": "^0.3.8",
"feed-read-parser": "^0.0.6",
"find-rss": "^1.6.4",
"glob": "^7.1.2",
"graphql-client": "^2.0.0",
"jquery": "^3.2.1",
"jquery.i18n": "git+https://github.com/wikimedia/jquery.i18n.git",
"json2yaml": "^1.1.0",
"lodash.mapkeys": "^4.6.0",
"mustache": "^2.3.0",
"netlify-env": "^0.0.4",
"node-fetch": "^1.7.3",
"rss": "^1.2.2",
"sort-keys": "^2.0.0",
"valid-github-username": "0.0.1",
"wikidata-sdk": "^5.5.0",
"iconv-lite": "^0.4.24"
},
"devDependencies": {
"autoprefixer": "^7.2.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.3.0",
"css-loader": "^0.28.7",
"csslint": "^1.0.5",
"eslint": "^4.12.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.3.1",
"expose-loader": "^0.7.4",
"extract-text-webpack-plugin": "^3.0.2",
"jest": "^22.0.3",
"mockdate": "^2.0.2",
"postcss-loader": "^2.0.9",
"prettier": "^1.9.1",
"style-loader": "^0.19.1",
"stylelint": "^7.13.0",
"uglifyjs-webpack-plugin": "^1.1.4",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7",
"webpack-manifest-plugin": "^1.3.2"
},
"jest": {
"testMatch": [
"**/tests/**/?(*.)(spec|test).js?(x)"
]
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}