-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 2.45 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
75
76
77
78
79
80
81
82
83
84
{
"name": "devflix.johnywalves.com.br",
"version": "1.2.0",
"private": true,
"scripts": {
"develop": "next dev",
"prepare": "husky install",
"build": "next build",
"start": "next start",
"format": "prettier --write \"src/**/*.tsx\" \"src/**/*.ts\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"next:lint": "next lint",
"lint": "eslint src --max-warnings=0",
"test": "jest --maxWorkers=50%",
"test:watch": "jest --watch --maxWorkers=25%",
"test:ci": "jest --runInBand",
"generate": "yarn plop --plopfile ./.generators/plopfile.js",
"server": "node ./server.js",
"dev": "NODE_ENV=development concurrently \"yarn develop\" \"yarn server\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix",
"yarn test --findRelatedTests --bail"
]
},
"dependencies": {
"json-server": "0.17.3",
"next": "13.4.12",
"next-pwa": "5.6.0",
"nprogress": "0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-slick": "0.29.0",
"styled-components": "6.0.7"
},
"devDependencies": {
"@storybook/addon-essentials": "7.2.3",
"@storybook/nextjs": "7.2.3",
"@storybook/react": "7.2.3",
"@testing-library/dom": "9.3.1",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.5.3",
"@types/node": "20.4.10",
"@types/nprogress": "0.2.0",
"@types/react": "18.2.20",
"@types/react-slick": "0.23.10",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "6.3.0",
"@typescript-eslint/parser": "6.3.0",
"babel-plugin-styled-components": "2.1.4",
"concurrently": "7.4.0",
"eslint": "8.47.0",
"eslint-config-next": "13.4.13",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-import-helpers": "1.3.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.33.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.13",
"husky": "8.0.3",
"jest": "29.6.2",
"jest-environment-jsdom": "29.6.2",
"jest-styled-components": "7.1.1",
"lint-staged": "13.2.3",
"plop": "3.1.2",
"prettier": "3.0.1",
"storybook": "7.2.3",
"typescript": "5.1.6",
"webpack": "5.88.2"
},
"engines": {
"node": ">=14.17.6"
}
}