-
-
Notifications
You must be signed in to change notification settings - Fork 384
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 799 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 799 Bytes
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
{
"name": "react-nextjs",
"version": "0.0.0",
"private": true,
"repository": "twbs/examples",
"license": "MIT",
"stackblitz": {
"startCommand": "next dev --webpack"
},
"scripts": {
"build": "next build",
"start": "next dev",
"lint": "eslint .",
"fix": "eslint --fix .",
"test": "npm run build"
},
"dependencies": {
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"bootstrap": "^5.3.8",
"next": "^16.2.2",
"react": "^19.2.4",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.2.4",
"typescript": "^6.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"eslint-config-next": "^16.2.2",
"sass": "^1.98.0"
}
}