forked from Platzi-Master-C8/gethired-community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.85 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "community",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"server": "json-server --watch data.json -p 3500",
"predeploy": "npm run build",
"deploy": "gh-pages -d next build",
"heroku-postbuild": "npm run build ",
"prepare": "husky install"
},
"dependencies": {
"@auth0/auth0-react": "^1.8.0",
"@auth0/nextjs-auth0": "^1.6.1",
"@monaco-editor/react": "^4.3.1",
"@mui/icons-material": "^5.2.1",
"@mui/material": "^5.2.3",
"@mui/styles": "^5.2.3",
"chart.js": "^3.7.0",
"faker": "^5.5.3",
"gh-pages": "^3.2.3",
"isomorphic-fetch": "^3.0.0",
"moment": "^2.29.1",
"mui-rte": "^1.29",
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@types/node": "^16.11.12",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^3.2.3",
"husky": ">=6",
"json-server": "^0.17.0",
"lint-staged": ">=10",
"prettier": "^2.5.1",
"react-chartjs-2": "^4.0.1",
"sass": "^1.45.0",
"standard": "^16.0.4",
"typescript": "^4.5.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint 'components/**.tsx' --fix"
]
}
}