-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
112 lines (112 loc) · 3.02 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
111
112
{
"name": "dev-portfolio",
"version": "2.1.5",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "dev-portfolio is React library that helps you develop your web portfolio easily and quickly.",
"author": "modern.agile.team <modern.agile.team@gmail.com> (https://github.com/modern-agile-team)",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/modern-agile-team/dev-portfolio.git"
},
"bugs": {
"url": "https://github.com/modern-agile-team/dev-portfolio"
},
"homepage": "https://github.com/modern-agile-team/dev-portfolio",
"license": "MIT",
"keywords": [
"portfolio",
"dev",
"dev-portfolio"
],
"dependencies": {
"@iconify/react": "^3.2.2",
"object.assign": "^4.1.2",
"react-icons": "^4.4.0",
"react-scripts": "5.0.0",
"styled-components": "^5.3.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "rm -rf dist && mkdir dist && tsc && husky install",
"semantic-release": "semantic-release",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"parserOptions": {
"parser": "babel-eslint",
"sourceType": "module",
"allowImportExportEverywhere": true,
"ecmaVersion": 2017
},
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/preset-react": "^7.16.7",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^17.0.23",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.6",
"@types/react-icons": "^3.0.0",
"@types/styled-components": "^5.1.24",
"@types/tapable": "^2.2.2",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.39.0",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^2.0.6",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"prettier": "^2.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-release": "^19.0.5",
"webpack": "5.24.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}