-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.92 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.92 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
{
"name": "nodejs-website",
"private": true,
"description": "Nodejs.org Website",
"homepage": "https://nodejs.org",
"repository": {
"type": "git",
"url": "git+https://github.com/nodejs/nodejs.org.git"
},
"license": "MIT",
"author": {
"name": "Node.js Website Working Group"
},
"type": "module",
"scripts": {
"build": "turbo run build",
"check-types": "turbo check-types",
"deploy": "turbo run deploy",
"dev": "turbo run dev",
"format": "pnpm lint:fix && pnpm prettier:fix",
"lint": "turbo run lint",
"lint:fix": "turbo run lint --force",
"prepare": "husky",
"prettier": "prettier \"**/*.{js,mjs,ts,tsx,md,mdx,json,yml,css}\" --check --cache --cache-strategy=content --cache-location=.prettiercache",
"prettier:fix": "pnpm prettier --write",
"scripts:release-post": "turbo run scripts:release-post",
"start": "turbo run start",
"storybook": "turbo run storybook",
"storybook:build": "turbo run 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",
"cloudflare:preview": "turbo run cloudflare:preview",
"cloudflare:deploy": "turbo run cloudflare:deploy"
},
"dependencies": {
"husky": "9.1.7",
"lint-staged": "15.5.1",
"turbo": "2.5.4"
},
"devDependencies": {
"@eslint/js": "~9.26.0",
"@reporters/github": "^1.7.2",
"@testing-library/react": "~16.3.0",
"cross-env": "^7.0.3",
"eslint": "~9.26.0",
"eslint-plugin-import-x": "~4.11.0",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "0.6.12"
},
"packageManager": "pnpm@10.11.1",
"engines": {
"node": "v22"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "10.11.1"
}
}
}