-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "@cmsonfire/firebase-react-provider",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/firebase-react-provider",
"packages/@cmsonfire/*",
"www/*"
],
"repository": "[email protected]:cmsonfire/firebase-react-provider.git",
"author": "talves <[email protected]> (@talves)",
"license": "MIT",
"scripts": {
"build:admin": "yarn workspace @cmsonfire/admin-provider build:lib",
"build:firestore": "yarn workspace @cmsonfire/firestore-provider build:lib",
"build:storage": "yarn workspace @cmsonfire/storage-provider build:lib",
"build:main": "yarn workspace firebase-react-provider build:lib",
"build:all": "yarn build:admin && yarn build:firestore && yarn build:storage && yarn build:main",
"build": "yarn build:all",
"release": "yarn changeset publish"
},
"dependencies": {
"@changesets/cli": "^2.11.2"
},
"devDependencies": {
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Opera versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 2 ChromeAndroid versions"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}