forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.07 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
{
"name": "nodejs.org",
"private": true,
"version": "1.0.0",
"description": "Nodejs.org website",
"homepage": "https://nodejs.org",
"scripts": {
"build": "node build.js",
"build:deploy": "node build.js --preserveLocale",
"serve": "cross-env NODE_ENV=development node server.js",
"external:survey": "rsync -avz --exclude \"node_modules*\" --exclude \"package*\" external/survey-2018/ build/en/user-survey-report",
"deploy": "npm-run-all load-schedule build:deploy external:survey",
"load-versions": "node scripts/load-versions.js",
"load-schedule": "curl -sS https://raw.githubusercontent.com/nodejs/Release/master/schedule.json -o source/schedule.json",
"start": "npm run serve",
"test": "npm-run-all test:lint test:unit",
"test:lint": "npm-run-all --parallel --aggregate-output --continue-on-error test:lint:*",
"test:lint:js": "eslint . --cache --cache-location .cache/.eslintcache",
"test:lint:md": "remark -qf .",
"test:lint:stylelint": "stylelint \"layouts/css/**/*.{css,scss}\" --cache --cache-location .cache/.stylelintcache --report-needless-disables",
"test:lint:lockfile": "lockfile-lint --allowed-hosts npm github.com --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"test:html": "node scripts/vnu-jar.js",
"test:unit": "tape \"tests/**/*.test.js\""
},
"repository": "nodejs/nodejs.org",
"keywords": [],
"author": "Node.js Website Working Group",
"license": "MIT",
"engines": {
"node": ">=12"
},
"dependencies": {
"@metalsmith/markdown": "^1.6.0",
"@metalsmith/permalinks": "^2.4.1",
"autoprefixer": "^10.4.13",
"fs-extra": "^10.1.0",
"graceful-fs": "^4.2.10",
"handlebars": "^4.7.7",
"jquery": "^3.6.1",
"jquery.fancytable": "^1.0.32",
"jstransformer-handlebars": "^1.2.0",
"junk": "^3.1.0",
"lodash.defaultsdeep": "^4.6.1",
"marked": "^4.2.2",
"metalsmith": "^2.5.1",
"metalsmith-collections": "^0.9.0",
"metalsmith-feed": "^1.0.0",
"metalsmith-layouts": "^2.3.1",
"metalsmith-one-replace": "^0.1.7",
"metalsmith-yearly-pagination": "^4.0.2",
"ncp": "^2.0.0",
"node-version-data": "^1.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"sass": "^1.56.1",
"semver": "^7.3.8",
"strftime": "^0.10.1"
},
"devDependencies": {
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"glob": "^7.2.3",
"lockfile-lint": "^4.9.6",
"nock": "^13.2.9",
"node-fetch": "^2.6.7",
"prettier": "^2.7.1",
"proxyquire": "^2.1.3",
"remark-cli": "^11.0.0",
"remark-frontmatter": "^4.0.1",
"remark-preset-lint-node": "^3.3.1",
"st": "^3.0.0",
"stylelint": "^14.15.0",
"stylelint-config-twbs-bootstrap": "^7.0.0",
"tape": "^5.6.1",
"vnu-jar": "22.9.29"
}
}