-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
149 lines (149 loc) · 3.85 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "@apisuite/apisuite-billing-extension-ui",
"version": "1.10.4",
"main": "build/index.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"description": "The Billing extension's UI.",
"watch": {
"build": {
"patterns": [
"lib"
],
"extensions": "ts,tsx,scss,json",
"ignore": "lib/constants/info.ts",
"quiet": false
}
},
"scripts": {
"format": "prettier --write \"lib/{,**/}*.ts{,x}\"",
"lint": "tsc --noEmit && eslint \"lib/{,**/}*.ts{,x}\"",
"build": "node ./scripts/write-info && rimraf ./build && tsc",
"build:watch": "npm-watch build",
"version": "npm run build && git add -A build lib/constants/info.ts",
"test": "jest",
"test:watch": "jest --watch",
"precommit": "lint-staged"
},
"lint-staged": {
"{lib,test}/{,**/}*.ts{,x}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/APISuite/apisuite-billing-extension-ui.git"
},
"keywords": [
"React",
"Component",
"Library",
"Typescript",
"Sass"
],
"author": "APISuite",
"license": "MIT",
"bugs": {
"url": "https://github.com/APISuite/apisuite-billing-extension-ui/issues"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"homepage": "https://github.com/APISuite/apisuite-billing-extension-ui#readme",
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2",
"redux": ">=4.0.4",
"react-redux": ">=7.1.3",
"react-router": ">=5.1.2",
"react-router-dom": ">=5.1.2",
"redux-saga": ">=1.1.3",
"formik": ">=2.2.0",
"yup": ">=0.29.3",
"@apisuite/fe-base": ">=1.0.0-next.7",
"@material-ui/icons": ">=4.5.1",
"@material-ui/lab": ">=4.0.0-alpha.56"
},
"devDependencies": {
"@apisuite/extension-ui-types": "1.0.5",
"@apisuite/fe-base": "1.0.0-next.7",
"@babel/core": "7.11.4",
"@material-ui/icons": "4.5.1",
"@material-ui/lab": "4.0.0-alpha.56",
"@semantic-release/git": "^9.0.0",
"@testing-library/jest-dom": "5.11.4",
"@testing-library/react": "10.4.9",
"@types/jest": "26.0.10",
"@types/react": "16.9.47",
"@types/react-dom": "16.9.8",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"axios": "0.21.1",
"babel-loader": "8.1.0",
"babel-preset-react-app": "9.1.2",
"currency-symbol-map": "5.0.1",
"eslint": "7.7.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.0",
"formik": "2.2.0",
"identity-obj-proxy": "3.0.0",
"immutability-helper": "3.1.1",
"jest": "26.4.2",
"lint-staged": "10.2.12",
"node-sass": "4.14.1",
"npm-watch": "0.9.0",
"prettier": "2.1.0",
"react": "17.0.2",
"react-copy-to-clipboard": "5.0.3",
"react-dom": "17.0.2",
"react-redux": "7.1.3",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"redux": "4.0.4",
"redux-saga": "1.1.3",
"sass-loader": "10.0.1",
"semantic-release": "^17.4.4",
"ts-jest": "26.2.0",
"typescript": "4.1.3",
"yup": "0.29.3"
},
"dependencies": {
"clsx": "1.1.1"
},
"release": {
"branches": [
{
"name": "master"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [ci skip]"
}
],
"@semantic-release/github"
]
}
}