forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.16 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.16 KB
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
{
"name": "nodejs-website",
"type": "module",
"private": true,
"license": "MIT",
"description": "Nodejs.org Website",
"homepage": "https://nodejs.org",
"repository": {
"type": "git",
"url": "git+https://github.com/nodejs/nodejs.org.git"
},
"author": {
"name": "Node.js Website Team and Contributors"
},
"scripts": {
"build": "turbo build",
"cloudflare:deploy": "turbo cloudflare:deploy",
"cloudflare:preview": "turbo cloudflare:preview",
"deploy": "turbo deploy",
"dev": "turbo dev",
"format": "turbo //#prettier:fix prettier:fix lint:fix",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"lint:staged": "lint-staged",
"lint:types": "turbo lint:types",
"prepare": "husky",
"prettier": "prettier \"**/*.{js,mjs,ts,tsx,md,mdx,json,yml,css}\" --check --cache --cache-strategy=content --cache-location=.prettiercache",
"prettier:fix": "node --run prettier -- --write",
"scripts:release-post": "turbo scripts:release-post",
"start": "turbo start",
"storybook": "turbo storybook",
"storybook:build": "turbo storybook:build",
"test": "turbo test:unit",
"test:ci": "cross-env NODE_OPTIONS=\"--test-reporter=lcov --test-reporter-destination=lcov.info --test-reporter=junit --test-reporter-destination=junit.xml --test-reporter=@reporters/github --test-reporter-destination=stdout\" turbo test:unit"
},
"dependencies": {
"husky": "9.1.7",
"lint-staged": "16.2.7",
"turbo": "2.8.3"
},
"devDependencies": {
"@eslint/js": "~9.39.2",
"@reporters/github": "^1.11.0",
"@testing-library/react": "~16.3.1",
"cross-env": "^10.1.0",
"eslint": "~9.39.2",
"eslint-import-resolver-typescript": "~4.4.4",
"eslint-plugin-import-x": "~4.16.1",
"globals": "^16.5.0",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"typescript": "catalog:",
"typescript-eslint": "~8.54.0"
},
"packageManager": "pnpm@10.28.2",
"devEngines": {
"runtime": {
"name": "node",
"version": ">=v24.11.0",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"version": "10.28.2",
"onFail": "error"
}
}
}