forked from everydotorg/donate-button
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 934 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"scripts": {
"build:donateButton": "yarn workspace @everydotorg/donate-button build && cp -r packages/donate-button/dist ./docs",
"build:donateButtonNext": "yarn workspace @everydotorg/donate-button-next build && cp -r packages/donate-button-next/dist ./docs",
"build:donateButtonV4": "yarn workspace @everydotorg/donate-button-v4 build && cp -r packages/donate-button-v4/dist ./docs",
"build": "yarn build:donateButtonNext && yarn build:donateButtonV4",
"lint": "yarn workspace @everydotorg/donate-button-next lint",
"lint:fix": "yarn workspaces @everydotorg/donate-button-next lint:fix",
"test": "yarn workspaces run test",
"postinstall": "patch-package"
},
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"concurrently": "^7.1.0",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.2.1",
"xo": "^0.48.0"
}
}