-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
85 lines (85 loc) · 2.4 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
{
"name": "eos-icons-figma",
"version": "1.0.0",
"description": "A Figma plugin to use all of EOS-icons from within the application",
"main": "code.js",
"scripts": {
"test": "jest",
"lint": "eslint .",
"format": "npx prettier --write .",
"checkFormat": "npx prettier --check .",
"prepare": "husky install",
"huskyFormat": "npm run lint && npm run checkFormat",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@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",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@figma/plugin-typings": "^1.43.0",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.42",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"prettier": "2.3.2",
"ts-jest": "^27.1.3",
"tsc-watch": "^4.6.2",
"typescript": "^4.6.2"
},
"dependencies": {
"conventional-changelog-eslint": "^3.0.9",
"css-loader": "^3.1.0",
"eos-icons": "^5.4.0",
"eos-icons-react": "2.0.1",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"prop-types": "^15.8.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"semantic-release": "^19.0.3",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.4",
"url-loader": "^2.1.0",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6"
},
"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"
]
}
}