-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.07 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
71
72
{
"name": "plataforma-sabia-blog-web",
"author": "Plataforma Sabiá <https://github.com/ufersa/plataforma-sabia>",
"version": "1.0.0",
"private": true,
"url": "https://plataformasabia.com",
"scripts": {
"develop": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src --max-warnings=0",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"lint-staged": {
"src/**/*": [
"npm run lint -- --fix",
"npm run test -- --findRelatedTests --bail"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@styled-icons/fa-brands": "^10.22.0",
"@styled-icons/ionicons-solid": "^10.24.0",
"@styled-icons/material-outlined": "^10.26.0",
"@types/nprogress": "^0.2.0",
"graphql": "^15.4.0",
"graphql-request": "^3.3.0",
"next": "10.1.2",
"next-pwa": "^3.1.5",
"nprogress": "^0.2.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-slick": "^0.28.1",
"sanitize-html": "^2.1.2",
"styled-components": "^5.2.1",
"styled-media-query": "^2.1.2",
"swr": "^0.3.9"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-typescript": "^7.12.1",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@types/react": "^16.9.55",
"@types/react-slick": "^0.23.8",
"@types/sanitize-html": "^1.27.0",
"@types/styled-components": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.11.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"jest": "^26.6.1",
"jest-styled-components": "^7.0.3",
"lint-staged": "^10.5.2",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
}
}