forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 4.39 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"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": {
"scripts:release-post": "cross-env NODE_NO_WARNINGS=1 node scripts/release-post/index.mjs",
"scripts:sitemap": "cross-env NODE_NO_WARNINGS=1 next-sitemap --config next-sitemap.config.mjs",
"serve": "cross-env NODE_NO_WARNINGS=1 next dev",
"build": "cross-env NODE_NO_WARNINGS=1 next build",
"start": "cross-env NODE_NO_WARNINGS=1 next start",
"deploy": "cross-env NEXT_STATIC_EXPORT=true npm run build && cross-env NEXT_STATIC_EXPORT=true npm run scripts:sitemap",
"lint:js": "cross-env NODE_NO_WARNINGS=1 next lint --file \"**/*.{mjs,ts,tsx}\"",
"lint:md": "cross-env NODE_NO_WARNINGS=1 next lint --file \"**/*.md?(x)\"",
"lint:scss": "stylelint --config .stylelintrc \"**/*.{css,sass,scss}\"",
"lint": "concurrently -s all -n \"lint:js,lint:md,lint:scss\" -c \"magenta,cyan,blue\" \"npm:lint:js\" \"npm:lint:md\" \"npm:lint:scss\"",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier . --check --cache --cache-strategy metadata",
"prettier:fix": "npm run prettier -- --write",
"format": "concurrently -s all -n \"prettier:fix,lint:fix\" -c \"yellow,green\" \"npm:prettier:fix\" \"npm:lint:fix\"",
"storybook": "cross-env NODE_NO_WARNINGS=1 storybook dev -p 6006 --quiet",
"storybook:build": "cross-env NODE_NO_WARNINGS=1 storybook build --quiet --loglevel warn",
"test:unit": "cross-env NODE_NO_WARNINGS=1 jest --passWithNoTests",
"test:unit:watch": "npm run test:unit -- --watch",
"test:storybook": "concurrently -P -k -s first -n \"storybook,test-storybook\" -c \"magenta,blue\" \"npm:storybook -- --ci\" \"wait-on http://localhost:6006 && test-storybook {@}\"",
"test:storybook:snapshot": "npm run test:storybook -- -- --updateSnapshot",
"test:storybook:watch": "npm run test:storybook -- -- --watch",
"test": "concurrently -s all -n \"test:unit,test:storybook\" -c \"yellow,green\" \"npm:test:unit\" \"npm:test:storybook\""
},
"dependencies": {
"@mdx-js/react": "^2.3.0",
"@mui/material": "^5.13.2",
"@nodevu/core": "^0.1.0",
"@vercel/analytics": "^1.0.1",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"framer-motion": "^10.12.16",
"highlight.js": "^11.8.0",
"isomorphic-dompurify": "^1.5.0",
"next": "^13.4.3",
"next-themes": "^0.2.1",
"nextra": "^2.6.1",
"prismjs": "^1.29.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",
"semver": "^7.5.1",
"sharp": "^0.32.1",
"strftime": "^0.10.1",
"swr": "^2.1.5",
"turbo": "^1.9.9"
},
"devDependencies": {
"@storybook/addon-controls": "^7.0.17",
"@storybook/addon-interactions": "^7.0.17",
"@storybook/nextjs": "^7.0.17",
"@storybook/test-runner": "^0.10.0",
"@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.15.3",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"@types/semver": "^7.5.0",
"@types/strftime": "^0.9.4",
"@types/testing-library__jest-dom": "^5.14.6",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"concurrently": "^8.0.1",
"eslint": "^8.41.0",
"eslint-config-next": "^13.4.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-mdx": "^2.1.0",
"eslint-plugin-storybook": "^0.6.12",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.7",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"next-sitemap": "^4.1.3",
"prettier": "^2.8.8",
"remark-preset-lint-node": "^4.0.0",
"remark-preset-prettier": "^2.0.1",
"storybook": "^7.0.17",
"stylelint": "^15.6.2",
"stylelint-config-recommended-scss": "^12.0.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-order": "^6.0.3",
"stylelint-selector-bem-pattern": "^2.1.1",
"typescript": "^5.0.4",
"user-agent-data-types": "^0.3.1",
"wait-on": "^7.0.1"
}
}