-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.93 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
{
"name": "app-name",
"version": "0.1.0",
"author": "Junior Alves <[email protected]>",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint src --max-warnings=0",
"postinstall": "husky install",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:watch": "yarn test --watch",
"generate": "yarn plop --plopfile generators/plopfile.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix",
"yarn test --findRelatedTests --bail"
]
},
"dependencies": {
"axios": "^1.3.4",
"eslint-config-next": "^13.2.4",
"next": "^13.2.4",
"next-pwa": "^5.5.5",
"polished": "^4.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "5.3.9"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@swc/core": "^1.3.44",
"@swc/jest": "^0.2.24",
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^27.5.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.32",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"cypress": "^12.9.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.13.2",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "8",
"jest": "^27.5.1",
"jest-styled-components": "^7.1.1",
"lint-staged": "^13.2.0",
"plop": "^3.1.1",
"prettier": "^2.8.7",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5",
"webpack": "5.77.0"
}
}