-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) 路 1.78 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) 路 1.78 KB
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
{
"name": "react-avancado-boilerplate",
"version": "1.0.0",
"private": true,
"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.js",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook -s ./public",
"postinstall": "husky install"
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix",
"yarn test --findRelatedTests --bail"
]
},
"dependencies": {
"next": "10.2.0",
"next-pwa": "^5.3.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "5.3.3"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-typescript": "^7.16.7",
"@storybook/addon-essentials": "6.4.22",
"@storybook/react": "6.4.22",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"@types/node": "^17.0.25",
"@types/styled-components": "^5.1.19",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.33.0",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^2.0.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.4.0",
"jest-styled-components": "^7.0.8",
"plop": "^3.0.5",
"prettier": "^2.5.1",
"storybook-addon-next-router": "^2.0.4",
"typescript": "^4.5.4"
}
}