-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.81 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
{
"name": "convenient-discussions",
"description": "A JavaScript shell for wiki talk pages.",
"scripts": {
"build": "node buildConfigs && node buildI18n && webpack",
"start": "node buildConfigs && node buildI18n && cross-env NODE_OPTIONS=--max-old-space-size=2048 webpack serve --env dev",
"serve": "cross-env NODE_OPTIONS=--max-old-space-size=2048 webpack serve --env dev",
"configs": "node buildConfigs",
"deploy": "node --unhandled-rejections=strict deploy",
"docs": "rimraf dist/docs && jsdoc --configure jsdoc/config.js --access ['undefined'] --readme jsdoc/home.md",
"i18n": "node buildI18n",
"mirror": "git push --mirror https://gerrit.wikimedia.org/r/mediawiki/gadgets/ConvenientDiscussions",
"webpack": "webpack",
"single": "node buildConfigs && node buildI18n && cross-env NODE_OPTIONS=--max-old-space-size=2048 webpack serve --env single",
"test": "jest"
},
"browser": "src/js/app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jwbth/convenient-discussions.git"
},
"author": "Jack who built the house",
"license": "MIT",
"bugs": {
"url": "https://phabricator.wikimedia.org/tag/convenient-discussions/"
},
"homepage": "https://commons.wikimedia.org/wiki/User:Jack_who_built_the_house/Convenient_Discussions",
"dependencies": {
"date-fns": "^2.22.1",
"date-fns-tz": "^1.1.4",
"dayjs": "^1.10.5",
"htmlparser2": "^6.1.0",
"locutus": "^2.0.15",
"lz-string": "^1.4.4"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/runtime": "^7.13.10",
"@webpack-cli/serve": "^1.3.1",
"ajv": "^6.12.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"banner-webpack-plugin": "^0.2.3",
"chalk": "^2.4.2",
"cross-env": "^7.0.3",
"css-loader": "^3.6.0",
"cssnano": "^4.1.11",
"docdash": "^1.2.0",
"dompurify": "^2.2.7",
"eslint": "^6.8.0",
"eslint-plugin-jsdoc": "^22.2.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"http-proxy-to-socks": "^1.1.2",
"jest": "^27.0.3",
"jsdoc": "^3.6.6",
"jsdom": "^16.5.2",
"json5": "^2.2.0",
"less": "^3.13.1",
"less-loader": "^5.0.0",
"node-fetch": "^3.2.10",
"nodemw": "^0.13.0",
"postcss-loader": "^3.0.0",
"prompts": "^2.4.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rimraf": "^3.0.2",
"style-loader": "^1.3.0",
"terser-webpack-plugin": "^2.3.8",
"webpack": "^4.46.0",
"webpack-build-notifier": "^2.1.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"windows-iana": "^5.0.2",
"worker-loader": "^3.0.8",
"yargs": "^15.4.1"
},
"sideEffects": [
"./src/js/worker.js"
],
"browserslist": [
"> 1%",
"not IE 11"
]
}