-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.33 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
{
"name": "tdp-website",
"version": "0.0.0",
"author": "David Worms <[email protected]> (https://www.adaltas.com)",
"contributors": [
"Mohamed Mehdi BEN AISSA <[email protected]>"
],
"dependencies": {
"@davidcelis/remark-smartypants": "^2.1.0",
"@headlessui/react": "^2.1.1",
"@heroicons/react": "^2.1.4",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.4",
"@shikijs/rehype": "^1.9.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.13",
"autoprefixer": "^10.4.19",
"clsx": "^2.1.1",
"dedent": "^1.5.3",
"each": "^2.7.0",
"eslint": "8.56.0",
"eslint-config-next": "^14.2.4",
"glob": "^10.4.2",
"mdx-annotations": "^0.1.4",
"mixme": "^1.1.0",
"next": "14.2.4",
"next-mdx-remote": "^5.0.0",
"postcss": "^8.4.38",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"redac": "^0.4.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-mdx-title": "^3.1.0",
"rehype-slug": "^6.0.0",
"remark-extract-frontmatter": "^3.2.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"remark-table-of-content": "^0.4.0",
"remark-title-to-frontmatter": "^0.1.10",
"server-only": "^0.0.1",
"shiki": "^1.9.1",
"tailwindcss": "^3.4.4",
"tailwindcss-font-inter": "^3.0.1",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"yaml": "^2.4.5",
"zustand": "^4.5.4"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^9.0.11",
"pinst": "^3.0.0",
"serve": "^14.2.3",
"should": "^13.2.3"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "https://github.com/TOSIT-IO/tdp-website.git"
},
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"reportinit": "node bin/reportInit.mjs",
"start": "serve out",
"test": "npx mocha 'src/test/**/*.js'"
},
"type": "module"
}