forked from electron/electronjs.org-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.6 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
{
"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 && standard --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": "standard --fix",
"heroku-postbuild": "npm run precompile-assets"
},
"husky": {
"hooks": {
"pre-push": "check-for-leaks"
}
},
"dependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.10.1",
"@primer/css": "^14.4.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.8077.0",
"electron-i18n": "^1.2168.0",
"electron-markdown": "^0.6.0",
"electron-releases": "^3.430.0",
"electron-userland-reports": "1.6.0",
"express": "^4.17.1",
"express-hbs": "^2.3.3",
"express-request-language": "^1.1.15",
"fast-memoize": "^2.5.2",
"feed": "^4.1.0",
"flat": "^5.0.0",
"fs-extra": "^9.0.0",
"gray-matter": "^4.0.2",
"helmet": "^3.22.0",
"http-proxy-middleware": "^1.0.4",
"instantsearch.js": "^2.10.4",
"lil-env-thing": "^1.0.0",
"lobars": "^1.2.0",
"locale-code": "^2.0.2",
"lodash": "^4.17.15",
"lunr": "^2.3.8",
"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",
"primer-support": "^5.0.0",
"query-string": "^6.12.1",
"require-dir": "^1.1.0",
"@primer/octicons": "^9.6.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.7",
"chai": "^4.2.0",
"chai-cheerio": "^1.0.0",
"check-for-leaks": "^1.2.1",
"cheerio": "^1.0.0-rc.3",
"cypress": "^4.7.0",
"husky": "^4.2.5",
"mocha": "^7.2.0",
"nock": "^12.0.3",
"nodemon": "^2.0.4",
"node-sass": "^4.14.1",
"simplecrawler": "^1.1.9",
"standard": "^12.0.1",
"supertest": "^4.0.2",
"supertest-session": "^4.0.0",
"uglify-js": "^3.8.1",
"wait-on": "^5.0.0",
"walk-sync": "^2.1.0"
},
"engines": {
"node": ">=12 <14"
},
"standard": {
"ignore": [
"/js/vendor",
"/cypress/integration"
],
"env": {
"browser": true
}
}
}