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
109 lines (109 loc) · 4.11 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 4.11 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
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
{
"name": "nodejs.org",
"private": true,
"version": "1.0.0",
"description": "Nodejs.org Website",
"homepage": "https://nodejs.org",
"repository": "https://github.com/nodejs/nodejs.org",
"author": "Node.js Website Working Group",
"license": "MIT",
"engines": {
"node": "v18"
},
"scripts": {
"serve": "cross-env NODE_ENV=development NODE_NO_WARNINGS=1 next dev",
"build": "cross-env NODE_ENV=production NODE_NO_WARNINGS=1 next build",
"postbuild": "next-sitemap",
"start": "cross-env NODE_ENV=production NODE_NO_WARNINGS=1 next start",
"export": "cross-env NODE_NO_WARNINGS=1 next export -o build",
"deploy": "npm run build && npm run export",
"lint:js": "eslint \"**/*.{js,jsx,ts,tsx}\" --cache --cache-file .eslintjscache --report-unused-disable-directives",
"lint:md": "eslint \"**/*.{md,mdx}\" --cache --cache-file .eslintmdcache",
"lint:scss": "stylelint --config .stylelintrc \"**/*.{css,sass,scss}\"",
"lint": "npm run lint:js && npm run lint:md && npm run lint:scss && npm run prettier",
"lint:fix": "npm run lint:js -- --fix && npm run lint:md -- --fix && npm run lint:scss -- --fix",
"prettier": "prettier . --check --cache --cache-strategy metadata",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"scripts:release-post": "NODE_NO_WARNINGS=1 node scripts/release-post/index.mjs",
"test": "cross-env NODE_NO_WARNINGS=1 jest --passWithNoTests",
"test:watch": "npm run test -- --watch",
"test:ci": "npm run test -- --coverage",
"test:snapshot": "npm run test -- --updateSnapshot",
"storybook": "cross-env NODE_ENV=development NODE_NO_WARNINGS=1 storybook dev -p 6006",
"storybook:build": "cross-env NODE_ENV=production NODE_NO_WARNINGS=1 storybook build"
},
"dependencies": {
"@mdx-js/react": "^2.3.0",
"@nodevu/core": "^0.0.4",
"classnames": "^2.3.2",
"feed": "^4.2.2",
"framer-motion": "^10.12.7",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.7",
"highlight.js": "^11.8.0",
"isomorphic-dompurify": "^1.7.0",
"next": "^13.3.4",
"next-sitemap": "^4.0.9",
"next-themes": "^0.2.1",
"nextra": "^2.4.2",
"node-version-data": "^1.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-intl": "^6.4.2",
"remark-gfm": "^3.0.1",
"sass": "^1.62.1",
"semver": "^7.5.0",
"strftime": "^0.10.1",
"stylelint-config-standard": "^33.0.0",
"swr": "^2.1.5"
},
"devDependencies": {
"@builder.io/partytown": "^0.8.0",
"@next/eslint-plugin-next": "^13.3.4",
"@storybook/addon-essentials": "^7.0.8",
"@storybook/addon-interactions": "^7.0.8",
"@storybook/addon-links": "^7.0.8",
"@storybook/blocks": "^7.0.8",
"@storybook/nextjs": "^7.0.8",
"@storybook/react": "^7.0.8",
"@storybook/testing-library": "^0.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@types/mdx": "^2.0.5",
"@types/node": "^18.16.3",
"@types/react": "^18.2.2",
"@types/react-dom": "^18.2.3",
"@types/semver": "^7.3.13",
"@types/strftime": "^0.9.4",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"critters": "^0.0.16",
"cross-env": "^7.0.3",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.4",
"eslint-config-prettier": "^8.8.0",
"eslint-mdx": "^2.0.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.10.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"remark-preset-lint-node": "^3.4.0",
"remark-preset-prettier": "^2.0.1",
"sharp": "^0.32.1",
"storybook": "^7.0.8",
"stylelint": "^15.6.1",
"stylelint-config-recommended-scss": "^11.0.0",
"stylelint-order": "^6.0.3",
"stylelint-selector-bem-pattern": "^2.1.1",
"turbo": "^1.9.3",
"typescript": "^5.0.4"
}
}