-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·110 lines (110 loc) · 3.96 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "course_styled-components",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": "Éverton Toffanetto",
"description": "This application is the course project of Styled-Components",
"repository": "https://github.com/everton-dgn/course_styled-components",
"main": "./src/index.js",
"scripts": {
"dev": "env-cmd -f .env.local webpack serve --progress --config webpack/webpack.local.js",
"start": "env-cmd -f .env.prod webpack serve --open --config webpack/webpack.prod.js",
"build": "env-cmd -f .env.prod webpack --config webpack/webpack.prod.js",
"build:dev": "env-cmd -f .env.dev webpack --config webpack/webpack.dev.js",
"lint": "eslint src --ext ts,tsx --max-warnings=0",
"lint:css": "stylelint src/**/*.ts",
"format": "prettier --write .",
"check-format": "prettier --check .",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "jest --maxWorkers=50% --passWithNoTests",
"test:w": "jest --watch --maxWorkers=25% --passWithNoTests",
"check-update": "yarn upgrade-interactive --latest",
"prepare": "husky install",
"release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"i18next": "^21.9.2",
"i18next-browser-languagedetector": "^6.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.6",
"react-router-dom": "^6.3.0",
"recharts": "^2.1.14",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@svgr/webpack": "^6.2.1",
"@swc/core": "^1.2.205",
"@swc/jest": "^0.2.21",
"@testing-library/dom": "^8.14.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"dotenv": "^16.0.1",
"env-cmd": "^10.1.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-typescript": "^3.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.5.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-styled-components": "^7.1.0",
"jest-svg-transformer": "^1.0.0",
"lint-staged": "^13.0.3",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"react-refresh": "^0.14.0",
"react-test-renderer": "^18.2.0",
"semantic-release": "^19.0.3",
"serve": "^13.0.2",
"source-map-loader": "^4.0.0",
"stylelint": "^14.10.0",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard": "^27.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"swc-loader": "^0.2.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
}
}