forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.51 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
{
"type": "module",
"private": true,
"name": "nodejs-website",
"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 Working Group"
},
"license": "MIT",
"engines": {
"node": "v20"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"storybook:build": "turbo run storybook:build",
"start": "turbo run start",
"check-types": "turbo check-types",
"scripts:release-post": "turbo run scripts:release-post",
"lint": "turbo run lint",
"lint:fix": "turbo run lint --force",
"prettier": "prettier \"**/*.{js,mjs,ts,tsx,md,mdx,json,yml,css}\" --check --cache --cache-strategy=content --cache-location=.prettiercache",
"prettier:fix": "npm run prettier --write",
"format": "npm run lint:fix && npm run prettier:fix",
"test": "turbo test:unit",
"prepare": "husky"
},
"dependencies": {
"husky": "9.1.6",
"lint-staged": "15.2.10",
"turbo": "2.1.3"
},
"devDependencies": {
"@eslint/js": "~9.10.0",
"@types/eslint__js": "~8.42.3",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "~9.10.0",
"eslint-plugin-import-x": "~4.2.1",
"eslint-plugin-no-relative-import-paths": "~1.5.5",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8"
}
}