forked from electron/electronjs.org-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.91 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
{
"name": "electronjs.org",
"version": "2.0.0",
"private": true,
"description": "The [website](https://electronjs.org) for [Electron](https://github.com/electron/electron).",
"repository": "https://github.com/electron/electronjs.org",
"homepage": "https://electronjs.org",
"author": "GitHub",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_OPTIONS='--max_old_space_size=4096' NODE_PATH=. NODE_ENV=production node server.js",
"bootstrap": "node script/bootstrap",
"test": "cross-env NODE_PATH=. NODE_ENV=test mocha --timeout 5000 && eslint . --fix",
"integration": "script/integration.sh",
"release": "node script/release",
"dev": "cross-env NODE_PATH=. NODE_ENV=development nodemon server.js",
"prepack": "check-for-leaks",
"precompile-assets": "cross-env NODE_ENV=production node script/precompile-assets.js",
"linkschecker": "NODE_PATH=. NODE_ENV=test node scripts/links-checker.js",
"cypress": "cypress run",
"lint": "npm run lint:js && npm run lint:style",
"lint:js": "eslint . --fix",
"lint:style": "stylelint 'public/styles/**/*.scss' --fix",
"heroku-postbuild": "npm run precompile-assets"
},
"husky": {
"hooks": {
"pre-push": "check-for-leaks",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@primer/css": "^15.2.0",
"awesome-electron": "2.6.0",
"babelify": "^10.0.0",
"brfs": "^2.0.2",
"browser-date-formatter": "^3.0.3",
"browserify-middleware": "^8.1.1",
"clipboard": "^2.0.6",
"compression": "^1.7.4",
"connect-browser-sync": "^2.1.0",
"connect-slashes": "^1.4.0",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.2",
"crowdin-editor-language-codes": "^1.0.0",
"description": "0.0.4",
"dotenv": "^8.2.0",
"electron-api-historian": "^1.12.0",
"electron-apps": "1.8407.0",
"electron-i18n": "^1.2541.0",
"electron-markdown": "^0.8.1",
"electron-releases": "^3.536.0",
"electron-userland-reports": "1.6.0",
"express": "^4.17.1",
"express-hbs": "^2.3.4",
"express-request-language": "^1.1.15",
"fast-memoize": "^2.5.2",
"feed": "^4.2.1",
"flat": "^5.0.2",
"fs-extra": "^9.0.1",
"gray-matter": "^4.0.2",
"helmet": "^4.2.0",
"http-proxy-middleware": "^1.0.6",
"instantsearch.js": "^2.10.4",
"lil-env-thing": "^1.0.0",
"lobars": "^1.2.0",
"locale-code": "^2.0.2",
"lodash": "^4.17.20",
"lunr": "^2.3.9",
"make-promises-safe": "^5.0.0",
"minimist": "^1.2.5",
"node-sass-middleware": "^0.11.0",
"paginate-array": "^2.1.0",
"platform-utils": "^1.2.0",
"pluralize": "^8.0.0",
"query-string": "^6.13.6",
"require-dir": "^1.1.0",
"@primer/octicons": "^11.0.0",
"require-directory": "^2.1.1",
"require-yaml": "0.0.1",
"rtl-detect": "^1.0.2",
"schemeless": "^1.2.0",
"search-with-your-keyboard": "^2.0.0",
"semver": "^7.3.2",
"set-query-string": "^2.2.0",
"ultimate-pagination": "^1.0.0",
"yubikiri": "^2.0.0"
},
"devDependencies": {
"browser-sync": "^2.26.13",
"chai": "^4.2.0",
"chai-cheerio": "^1.0.0",
"check-for-leaks": "^1.2.1",
"cheerio": "^1.0.0-rc.3",
"cypress": "^5.6.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.0",
"mocha": "^8.2.1",
"nock": "^13.0.4",
"node-sass": "^4.14.1",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"simplecrawler": "^1.1.9",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"supertest": "^5.0.0",
"supertest-session": "^4.1.0",
"uglify-js": "^3.11.2",
"wait-on": "^5.2.0",
"walk-sync": "^2.2.0"
},
"engines": {
"node": ">=12 <14"
},
"lint-staged": {
"*.js": "npm run lint:js",
"*.scss": "npm run lint:style"
}
}