-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 929 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
33
34
35
36
37
38
39
40
41
{
"name": "platzi-nextjs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"export": "next export"
},
"keywords": [],
"author": "Bryan <[email protected]>",
"license": "ISC",
"dependencies": {
"@types/cors": "2.8.17",
"cors": "2.8.5",
"isomorphic-unfetch": "4.0.2",
"next": "15.1.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"semantic-ui-css": "2.5.0",
"semantic-ui-react": "2.1.5"
},
"devDependencies": {
"@types/node": "22.10.3",
"@types/react": "18.3.18",
"prettier": "3.4.2",
"pretty-quick": "4.0.0",
"styled-jsx": "^5.1.2",
"typescript": "5.6.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"packageManager": "[email protected]"
}