forked from midudev/preguntas-entrevista-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "preguntas-entrevista-react",
"version": "1.0.1",
"description": "",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"markdown:lint": "node scripts/lint.mjs",
"dev": "next dev --turbo",
"build": "node scripts/markdownToJson.mjs && next build",
"start": "next start",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/midudev/preguntas-entrevista-react.git"
},
"bugs": {
"url": "https://github.com/midudev/preguntas-entrevista-react/issues"
},
"homepage": "https://github.com/midudev/preguntas-entrevista-react#readme",
"devDependencies": {
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"autoprefixer": "10.4.19",
"eslint": "8.30.0",
"eslint-config-next": "14.2.1",
"markdownlint": "0.34.0",
"postcss": "8.4.38",
"standard": "17.1.0",
"tailwindcss": "3.4.3",
"typescript": "5.4.5"
},
"dependencies": {
"@headlessui/react": "1.7.19",
"@sindresorhus/slugify": "2.2.1",
"@vercel/og": "0.6.2",
"framer-motion": "8.0.0",
"fs-extra": "11.2.0",
"fuse.js": "6.6.2",
"just-debounce-it": "3.2.0",
"marked": "4.2.4",
"next": "14.2.1",
"prismjs": "1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-github-btn": "1.4.0"
}
}