forked from PinsaraPerera/nextra-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 881 Bytes
/
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
{
"name": "fossuok-design-guidelines",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint \"**/*.mdx\" --no-ignore",
"lint:mdx": "eslint \"pages/**/*.mdx\" --no-ignore && remark . --ext .mdx && cat status.txt || cat failure.txt",
"test": "npm run lint:mdx"
},
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"autoprefixer": "^10.4.20",
"next": "15.0.3",
"nextra": "^3.2.4",
"nextra-theme-docs": "^3.2.4",
"postcss": "^8.4.49",
"prettier": "^3.4.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "^3.4.15"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-plugin-mdx": "^3.1.5",
"remark-cli": "^12.0.1",
"remark-lint": "^10.0.0",
"remark-preset-lint-recommended": "^7.0.0"
}
}