This repository has been archived by the owner on Jun 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.44 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
73
{
"name": "portfolio-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"eslint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"stylelint": "stylelint --config .stylelintrc.json 'src/styles/**/*.scss' --fix",
"test": "jest --config='./jest.config.js' --coverage",
"cy:run": "cypress run",
"lint": "npm run eslint && npm run stylelint",
"make-badges": "istanbul-badges-readme",
"lighthouse-badges": "lighthouse-badges --urls https://susomejias.dev https://susomejias.dev/experiencia https://susomejias.dev/proyectos https://susomejias.dev/ponencias https://susomejias.dev/devto-posts"
},
"dependencies": {
"@jest/types": "^27.0.6",
"@lhci/cli": "^0.8.0",
"@types/jest": "^27.0.1",
"@types/next": "^9.0.0",
"babel-jest": "^27.0.6",
"commitlint": "^13.1.0",
"date-fns": "^2.23.0",
"next": "^12.1.0",
"next-compose-plugins": "^2.2.1",
"next-images": "^1.6.2",
"next-pwa": "^5.2.24",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hooks-global-state": "^1.0.1",
"react-infinite-scroll-component": "^6.0.0",
"react-media-hook": "^0.4.9",
"react-top-loading-bar": "^2.0.1",
"sharp": "^0.29.0",
"swr": "^0.5.6",
"ts-jest": "^27.0.4"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@cypress/webpack-preprocessor": "^5.2.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/cypress": "^1.1.3",
"@types/node": "^16.6.1",
"@types/react": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"cypress": "^8.2.0",
"eslint": "^7.7.0",
"eslint-config-next": "^11.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"husky": "^7.0.1",
"istanbul-badges-readme": "^1.0.5",
"jest": "^27.0.6",
"jest-config": "^27.0.6",
"lighthouse-badges": "^1.1.10",
"prettier": "^2.1.1",
"sass": "^1.26.10",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-scss": "^3.18.0",
"ts-loader": "^9.2.5",
"typescript": "^4.3.2"
}
}