2016-12-19 21:46:17 +03:00
|
|
|
{
|
2017-11-16 22:08:45 +03:00
|
|
|
"name": "electronjs.org",
|
|
|
|
"version": "2.0.0",
|
2016-12-17 00:11:31 +03:00
|
|
|
"private": true,
|
2017-11-16 22:08:45 +03:00
|
|
|
"description": "The [website](https://electronjs.org) for [Electron](https://github.com/electron/electron).",
|
|
|
|
"repository": "https://github.com/electron/electronjs.org",
|
|
|
|
"homepage": "https://electronjs.org",
|
2015-05-08 02:53:13 +03:00
|
|
|
"author": "GitHub",
|
|
|
|
"license": "MIT",
|
2015-05-29 23:08:38 +03:00
|
|
|
"scripts": {
|
2020-02-27 20:54:05 +03:00
|
|
|
"start": "cross-env NODE_OPTIONS='--max_old_space_size=4096' NODE_PATH=. NODE_ENV=production node server.js",
|
2017-11-27 19:05:44 +03:00
|
|
|
"bootstrap": "node script/bootstrap",
|
2020-06-04 00:54:45 +03:00
|
|
|
"test": "cross-env NODE_PATH=. NODE_ENV=test mocha --timeout 5000 && eslint . --fix",
|
2018-05-10 07:55:10 +03:00
|
|
|
"integration": "script/integration.sh",
|
2017-11-27 19:05:44 +03:00
|
|
|
"release": "node script/release",
|
2018-12-20 00:06:03 +03:00
|
|
|
"dev": "cross-env NODE_PATH=. NODE_ENV=development nodemon server.js",
|
2017-07-25 00:55:42 +03:00
|
|
|
"prepack": "check-for-leaks",
|
2021-03-05 01:47:18 +03:00
|
|
|
"precompile-assets": "rimraf precompiled && cross-env NODE_ENV=production webpack --config ./webpack.common.js && node script/precompile-assets.js",
|
2018-03-12 13:45:32 +03:00
|
|
|
"linkschecker": "NODE_PATH=. NODE_ENV=test node scripts/links-checker.js",
|
2018-11-01 00:41:30 +03:00
|
|
|
"cypress": "cypress run",
|
2020-06-19 02:49:03 +03:00
|
|
|
"lint": "npm run lint:js && npm run lint:style",
|
|
|
|
"lint:js": "eslint . --fix",
|
2020-10-07 07:10:12 +03:00
|
|
|
"lint:style": "stylelint 'public/styles/**/*.scss' --fix",
|
2021-02-09 20:34:43 +03:00
|
|
|
"heroku-postbuild": "npm run precompile-assets",
|
|
|
|
"update-data": "node script/update-data.js"
|
2015-05-29 23:08:38 +03:00
|
|
|
},
|
2019-01-19 00:44:27 +03:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2020-06-19 02:49:03 +03:00
|
|
|
"pre-push": "check-for-leaks",
|
|
|
|
"pre-commit": "lint-staged"
|
2019-01-19 00:44:27 +03:00
|
|
|
}
|
|
|
|
},
|
2017-06-23 08:20:07 +03:00
|
|
|
"dependencies": {
|
2021-04-12 20:49:57 +03:00
|
|
|
"@babel/core": "^7.13.15",
|
2021-06-23 21:27:39 +03:00
|
|
|
"@babel/preset-env": "^7.14.7",
|
2021-04-06 20:33:32 +03:00
|
|
|
"@primer/css": "^15.2.0",
|
2021-03-02 06:31:58 +03:00
|
|
|
"@primer/octicons": "^12.1.0",
|
2017-11-27 23:37:25 +03:00
|
|
|
"awesome-electron": "2.6.0",
|
2019-12-18 05:38:31 +03:00
|
|
|
"browser-date-formatter": "^3.0.3",
|
2021-04-13 18:15:51 +03:00
|
|
|
"cheerio": "^1.0.0-rc.6",
|
2021-03-17 01:18:42 +03:00
|
|
|
"clipboard": "^2.0.8",
|
2019-03-25 07:38:20 +03:00
|
|
|
"compression": "^1.7.4",
|
2017-06-25 08:46:47 +03:00
|
|
|
"connect-browser-sync": "^2.1.0",
|
2019-03-25 07:12:07 +03:00
|
|
|
"connect-slashes": "^1.4.0",
|
2020-03-16 18:46:11 +03:00
|
|
|
"cookie-parser": "^1.4.5",
|
2021-01-27 01:35:44 +03:00
|
|
|
"cross-env": "^7.0.3",
|
2018-04-04 01:06:11 +03:00
|
|
|
"crowdin-editor-language-codes": "^1.0.0",
|
2017-12-24 20:25:55 +03:00
|
|
|
"description": "0.0.4",
|
2021-06-17 07:42:31 +03:00
|
|
|
"dotenv": "^10.0.0",
|
2021-07-14 19:54:17 +03:00
|
|
|
"electron-api-historian": "1.47.0",
|
2021-07-19 21:31:16 +03:00
|
|
|
"electron-apps": "1.8878.0",
|
2021-07-14 19:54:17 +03:00
|
|
|
"electron-i18n": "1.3082.0",
|
2021-01-27 01:18:05 +03:00
|
|
|
"electron-markdown": "^0.8.2",
|
2021-07-20 16:25:53 +03:00
|
|
|
"electron-releases": "3.733.0",
|
2016-12-21 01:04:58 +03:00
|
|
|
"electron-userland-reports": "1.6.0",
|
2019-05-27 16:18:39 +03:00
|
|
|
"express": "^4.17.1",
|
2020-07-20 21:37:11 +03:00
|
|
|
"express-hbs": "^2.3.4",
|
2017-11-27 19:05:44 +03:00
|
|
|
"express-request-language": "^1.1.15",
|
2021-01-06 23:52:17 +03:00
|
|
|
"express-useragent": "^1.0.15",
|
2020-03-05 02:03:17 +03:00
|
|
|
"fast-memoize": "^2.5.2",
|
2021-01-22 22:38:54 +03:00
|
|
|
"feed": "^4.2.2",
|
2020-08-07 20:02:56 +03:00
|
|
|
"flat": "^5.0.2",
|
2021-05-05 19:02:29 +03:00
|
|
|
"fs-extra": "^10.0.0",
|
2021-03-10 22:13:27 +03:00
|
|
|
"got": "^11.8.2",
|
2019-03-19 01:11:01 +03:00
|
|
|
"gray-matter": "^4.0.2",
|
2021-05-05 19:38:57 +03:00
|
|
|
"helmet": "^4.6.0",
|
2021-07-15 02:02:13 +03:00
|
|
|
"http-proxy-middleware": "^2.0.1",
|
2018-10-30 18:55:01 +03:00
|
|
|
"instantsearch.js": "^2.10.4",
|
2017-06-23 08:20:07 +03:00
|
|
|
"lil-env-thing": "^1.0.0",
|
2017-09-18 00:40:02 +03:00
|
|
|
"lobars": "^1.2.0",
|
2019-03-12 02:12:19 +03:00
|
|
|
"locale-code": "^2.0.2",
|
2021-02-22 23:44:36 +03:00
|
|
|
"lodash": "^4.17.21",
|
2020-08-25 22:01:34 +03:00
|
|
|
"lunr": "^2.3.9",
|
2021-01-28 21:18:00 +03:00
|
|
|
"make-promises-safe": "^5.1.0",
|
2020-03-13 22:35:45 +03:00
|
|
|
"minimist": "^1.2.5",
|
2017-06-25 08:46:47 +03:00
|
|
|
"node-sass-middleware": "^0.11.0",
|
2019-01-17 21:38:43 +03:00
|
|
|
"paginate-array": "^2.1.0",
|
2019-03-25 06:46:40 +03:00
|
|
|
"platform-utils": "^1.2.0",
|
2019-05-30 14:23:20 +03:00
|
|
|
"pluralize": "^8.0.0",
|
2021-07-15 00:03:49 +03:00
|
|
|
"query-string": "^7.0.1",
|
2018-10-01 18:50:00 +03:00
|
|
|
"require-dir": "^1.1.0",
|
2017-09-13 00:08:15 +03:00
|
|
|
"require-directory": "^2.1.1",
|
2017-09-17 14:45:03 +03:00
|
|
|
"require-yaml": "0.0.1",
|
2021-07-19 21:12:07 +03:00
|
|
|
"rtl-detect": "^1.0.4",
|
2017-10-21 01:25:44 +03:00
|
|
|
"schemeless": "^1.2.0",
|
2019-02-19 13:54:27 +03:00
|
|
|
"search-with-your-keyboard": "^2.0.0",
|
2021-03-29 19:32:35 +03:00
|
|
|
"semver": "^7.3.5",
|
2017-10-21 01:25:44 +03:00
|
|
|
"set-query-string": "^2.2.0",
|
2021-07-14 00:13:35 +03:00
|
|
|
"tocbot": "^4.12.3",
|
2021-01-26 00:29:19 +03:00
|
|
|
"ultimate-pagination": "^1.0.0"
|
2016-12-19 21:00:36 +03:00
|
|
|
},
|
2017-06-25 08:49:02 +03:00
|
|
|
"devDependencies": {
|
2021-07-06 02:34:36 +03:00
|
|
|
"@octokit/action": "^3.10.10",
|
2021-03-03 21:14:55 +03:00
|
|
|
"@types/cookie-parser": "^1.4.2",
|
2021-07-13 00:38:57 +03:00
|
|
|
"@types/express": "^4.17.13",
|
2021-01-28 20:54:12 +03:00
|
|
|
"babel-loader": "^8.2.2",
|
2021-07-13 20:29:16 +03:00
|
|
|
"browser-sync": "^2.27.4",
|
2021-03-24 23:59:46 +03:00
|
|
|
"chai": "^4.3.4",
|
2017-06-25 08:59:24 +03:00
|
|
|
"chai-cheerio": "^1.0.0",
|
2019-06-27 16:25:31 +03:00
|
|
|
"check-for-leaks": "^1.2.1",
|
2021-04-13 16:41:06 +03:00
|
|
|
"cypress": "^7.1.0",
|
2021-07-19 21:20:31 +03:00
|
|
|
"eslint": "^7.31.0",
|
2021-05-27 01:31:43 +03:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2021-07-13 23:19:24 +03:00
|
|
|
"eslint-plugin-prettier": "^3.4.0",
|
2021-07-14 00:24:43 +03:00
|
|
|
"globby": "^11.0.4",
|
2021-02-09 20:34:43 +03:00
|
|
|
"handlebars-loader": "^1.7.1",
|
2021-07-05 21:16:42 +03:00
|
|
|
"husky": "^7.0.0",
|
2021-07-13 23:05:19 +03:00
|
|
|
"lint-staged": "^11.0.1",
|
2021-06-07 21:09:32 +03:00
|
|
|
"mocha": "^9.0.0",
|
2021-07-19 21:35:45 +03:00
|
|
|
"nock": "^13.1.0",
|
2021-06-25 00:18:04 +03:00
|
|
|
"node-sass": "^6.0.1",
|
2021-07-12 19:26:52 +03:00
|
|
|
"nodemon": "^2.0.12",
|
2021-07-14 01:41:16 +03:00
|
|
|
"prettier": "^2.3.2",
|
2021-03-05 01:47:18 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2020-06-19 02:49:03 +03:00
|
|
|
"simplecrawler": "^1.1.9",
|
2021-05-05 19:14:23 +03:00
|
|
|
"stylelint": "^13.13.1",
|
2021-07-16 21:10:38 +03:00
|
|
|
"stylelint-config-standard": "^22.0.0",
|
2021-07-19 21:26:24 +03:00
|
|
|
"stylelint-scss": "^3.20.1",
|
2021-01-27 01:54:09 +03:00
|
|
|
"supertest": "^6.1.3",
|
2020-09-07 01:00:43 +03:00
|
|
|
"supertest-session": "^4.1.0",
|
2021-07-14 20:13:43 +03:00
|
|
|
"wait-on": "^6.0.0",
|
2021-06-14 22:05:38 +03:00
|
|
|
"walk-sync": "^3.0.0",
|
2021-07-19 21:16:53 +03:00
|
|
|
"webpack": "^5.45.1",
|
2021-06-14 22:11:21 +03:00
|
|
|
"webpack-cli": "^4.7.2",
|
2021-06-09 01:29:52 +03:00
|
|
|
"webpack-dev-middleware": "^5.0.0",
|
2021-04-06 07:10:54 +03:00
|
|
|
"webpack-manifest-plugin": "^3.1.1"
|
2017-06-25 08:49:02 +03:00
|
|
|
},
|
2017-10-14 07:54:16 +03:00
|
|
|
"engines": {
|
2021-01-13 06:51:43 +03:00
|
|
|
"node": ">=12 <15"
|
2020-06-19 02:49:03 +03:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.js": "npm run lint:js",
|
|
|
|
"*.scss": "npm run lint:style"
|
2015-05-08 02:53:13 +03:00
|
|
|
}
|
2017-08-16 21:10:45 +03:00
|
|
|
}
|