forked from jonalvarezz/platzi-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 969 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
42
43
44
45
{
"version": "0.1.0",
"name": "platzi-next",
"author": "@jonalvarezz",
"private": true,
"description": "",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@types/cors": "^2.8.6",
"cors": "^2.8.5",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.4.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2"
},
"devDependencies": {
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"typescript": "^3.9.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "yarn type-check"
}
}
}