-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 923 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
{
"version": "0.1.0",
"name": "platzi-next",
"author": "@devferx",
"private": true,
"description": "",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next",
"build": "next build",
"start": "next start",
"export": "next export",
"type-check": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"cors": "^2.8.5",
"isomorphic-unfetch": "^3.1.0",
"next": "^13.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/node": "^18.11.6",
"@types/react": "^18.0.23",
"express": "^4.17.1",
"husky": "^6.0.0",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.0",
"typescript": "^4.3.2"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
}