-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.43 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
{
"name": "react-avancado-boilerplate",
"version": "1.0.0",
"private": true,
"license": "MIT",
"description": "Projeto construído com base no curso de React Avançado do Willian Justen",
"author": {
"name": "Nicolas Justin",
"email": "nicolasjustin.dev@gmail.com",
"url": "https://nicolasjustin.dev/author/nicolas-justin"
},
"homepage": "https://github.com/nicolas-justin/react-avancado-boilerplate#readme",
"repository": {
"type": "git",
"url": "https://github.com/nicolas-justin/react-avancado-boilerplate.git"
},
"bugs": {
"email": "nicolasjustin.dev@gmail.com",
"url": "https://github.com/nicolas-justin/react-avancado-boilerplate/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"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.ts",
"storybook": "start-storybook -s public -p 6006",
"build-storybook": "build-storybook -s public",
"postinstall": "husky install",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix",
"yarn test --findRelatedTests --bail"
]
},
"dependencies": {
"next": "13.3.1",
"next-pwa": "5.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "5.3.11"
},
"devDependencies": {
"@storybook/addon-essentials": "6.5.16",
"@storybook/builder-webpack5": "7.6.7",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/react": "6.5.16",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.11",
"@types/node": "20.4.5",
"@types/react": "18.2.47",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.46.0",
"eslint-config-next": "13.4.12",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.6.1",
"jest-styled-components": "7.2.0",
"lint-staged": "13.2.3",
"plop": "3.1.2",
"prettier": "2.8.8",
"storybook-addon-next-router": "4.0.2",
"typescript": "5.1.6",
"webpack": "5.89.0"
}
}