-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.34 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
74
{
"name": "artur-lansoni",
"private": true,
"version": "0.0.1",
"description": "My personal blog / portifolio made using Clean Architecture, TDD, Design Patterns and SOLID",
"repository": "https://github.com/ArturLansoni/artur-lansoni-blog.git",
"author": "Artur Lansoni <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettify": "prettier --write .",
"prepare": "husky install",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "yarn test --watch",
"test:staged": "yarn test --findRelatedTests",
"test:e2e": "cypress open",
"test:e2e:run": "cypress run",
"test:e2e:ci": "start-server-and-test start http://localhost:3000 test:e2e:run"
},
"dependencies": {
"@chakra-ui/react": "^1.6.12",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"axios": "^0.24.0",
"framer-motion": "^4",
"next": "12.0.3",
"next-translate": "^1.1.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "^8.0.3",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^6.1.1"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@cypress/react": "^5.10.3",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/node": "16.11.6",
"@types/react": "17.0.34",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-jest": "^27.4.6",
"cypress": "^9.0.0",
"eslint": "^8.2.0",
"eslint-config-next": "^12.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-import-order": "^2.1.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.1-alpha-cb11155c8-20211112",
"faker": "^5.5.3",
"git-commit-msg-linter": "^3.2.8",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"start-server-and-test": "^1.14.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "4.4.4"
}
}