-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
94 lines (94 loc) · 2.64 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
{
"name": "eos-icons-adobe-xd",
"version": "1.0.0",
"description": "An Adobe XD plugin to use all of EOS-icons from within the application",
"main": "main.js",
"scripts": {
"test": "jest",
"lint": "eslint .",
"watch": "nodemon -w src -e js,jsx,css -w webpack.config.js -x npm run build",
"build": "webpack --mode development",
"prod": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EOS-uiux-Solutions/eos-icons-adobe-xd.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/EOS-uiux-Solutions/eos-icons-adobe-xd/issues"
},
"homepage": "https://github.com/EOS-uiux-Solutions/eos-icons-adobe-xd#readme",
"husky": {
"hooks": {
"pre-commit": "npx prettier --write . && npx eslint ."
}
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-react-jsx": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"babel-jest": "^27.0.6",
"babel-loader": "8.1.0",
"css-loader": "^1.0.0",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^1.1.11",
"husky": "^4.3.8",
"jest": "^27.0.6",
"nodemon": "^1.18.7",
"prettier": "2.3.1",
"style-loader": "^0.22.1",
"uuid": "^7.0.3",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/release-notes-generator": "^10.0.3",
"@svgr/webpack": "^5.5.0",
"conventional-changelog-eslint": "^3.0.9",
"eos-icons": "^5.1.0",
"eos-icons-react": "2.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-select": "^4.3.1",
"react-tooltip": "^4.2.21",
"semantic-release": "^19.0.3"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "eslint",
"releaseRules": [
{
"tag": "New",
"release": "minor"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/git",
"@semantic-release/github"
],
"branches": [
"main"
]
}
}