-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
83 lines (83 loc) · 3.08 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
{
"name": "wikipedia-kaios",
"version": "1.9.0",
"description": "Wikipedia KaiOS app",
"private": true,
"scripts": {
"test": "npm run cypress:lint && npm run cypress:run:firefox:headless",
"build": "webpack --mode production",
"build:ci": "cross-env DISABLE_REQUEST_HEADER=1 npm run build",
"dev": "cross-env DISABLE_REQUEST_HEADER=1 INSTRUMENTATION=1 RAND=1 webpack-dev-server --mode development",
"start": "http-server -p 8080",
"banana": "banana-checker i18n/",
"adb:connect": "adb forward tcp:6000 localfilesystem:/data/local/debugger-socket",
"b2g:uninstall": "node ./node_modules/b2g-cli-tool/b2g.js uninstall Wikipedia",
"b2g:install": "node ./node_modules/b2g-cli-tool/b2g.js install .",
"deploy": "cross-env INSTRUMENTATION=1 RAND=1 npm run build && npm run adb:connect && ( npm run b2g:uninstall || echo ) && npm run b2g:install",
"cypress:lint": "eslint cypress/",
"cypress:fix-lint": "eslint cypress/ --fix",
"cypress:run": "cypress run --record --key $CYPRESS_RECORD_KEY",
"cypress:run:firefox": "cypress run --browser firefox --record --key $CYPRESS_RECORD_KEY",
"cypress:run:firefox:headless": "cypress run --browser firefox --headless --record --key $CYPRESS_RECORD_KEY",
"cypress:open": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wikimedia/wikipedia-kaios.git"
},
"keywords": [
"wikipedia",
"kaios"
],
"author": "Wikimedia Foundation",
"license": "MIT",
"bugs": {
"url": "https://phabricator.wikimedia.org/project/profile/4305/"
},
"homepage": "https://github.com/wikimedia/wikipedia-kaios#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/preset-env": "^7.15.0",
"b2g-cli-tool": "github:fabricedesre/b2gclitool",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"cypress": "8.3.0",
"cypress-localstorage-commands": "^1.3.1",
"cypress-wait-until": "^1.7.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-preact": "^1.1.6",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-webpack-plugin": "^3.0.1",
"grunt-banana-checker": "^0.9.0",
"http-server": "^13.0.1",
"intl-pluralrules": "^1.3.0",
"less": "^4.1.1",
"less-loader": "^10.0.0",
"lodash": "^4.17.21",
"minimatch": "^3.0.4",
"style-loader": "^3.2.1",
"stylelint": "^13.13.0",
"stylelint-config-wikimedia": "^0.11.1",
"stylelint-webpack-plugin": "^3.0.1",
"terser-webpack-plugin": "^5.2.0",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.0"
},
"dependencies": {
"banana-i18n": "2.0.0",
"history": "^4.10.1",
"preact": "^10.4.1",
"preact-router": "^3.2.1"
}
}