-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "react-nextjs",
"version": "0.0.0",
"private": true,
"type": "module",
"repository": "twbs/examples",
"license": "MIT",
"stackblitz": {
"startCommand": "npm start"
},
"scripts": {
"build": "next build",
"start": "next dev",
"lint": "next lint",
"fix": "next lint --fix",
"test": "npm run build"
},
"dependencies": {
"@fontsource/open-sans": "^5.1.1",
"@fontsource/oswald": "^5.1.1",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.1.6",
"@types/mdx": "^2.0.13",
"@types/node": "^22.7.4",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"bootstrap": "^5.3.3",
"next": "^15.1.6",
"react": "^18.3.1",
"react-bootstrap": "^2.10.5",
"react-bootstrap-icons": "^1.11.5",
"react-dom": "^18.3.1",
"typescript": "~5.5.4"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.13",
"raw-loader": "^4.0.2",
"sass": "^1.71.0"
}
}