-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.32 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
{
"name": "rainbow-firebase-hooks",
"version": "0.1.0",
"description": "Set of React Firebase Hooks",
"main": "build/index.js",
"types": "build/index.d.js",
"repository": "[email protected]:nexxtway/firebase-hooks.git",
"author": "Nexxtway Team",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.7",
"@firebase/testing": "^0.16.5",
"@storybook/addon-actions": "^5.2.8",
"@storybook/addon-info": "^5.2.8",
"@storybook/addon-links": "^5.2.8",
"@storybook/addons": "^5.2.8",
"@storybook/react": "^5.2.8",
"@types/enzyme": "^3.10.4",
"@types/jest": "^24.0.24",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/shelljs": "^0.8.6",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"firebase": "^7.6.1",
"firebase-tools": "^7.11.0",
"fs-extra": "^8.1.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react": "^16.12.0",
"react-docgen-typescript-loader": "^3.6.0",
"react-json-view": "^1.19.1",
"react-rainbow-components": "^1.11.0",
"shelljs": "^0.8.3",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4",
"wait-for-expect": "^3.0.1"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "tsc",
"clean": "rm -Rf build",
"prepublishOnly": "yarn clean && yarn build",
"prepare:canary": "node scripts/prepare-canary.js",
"lint": "tsc --noEmit && eslint --ext '.js,.ts,.tsx' src",
"test": "firebase emulators:exec scripts/run-jest-tests.js --only firestore",
"deploy:library": "yarn build-storybook && firebase deploy"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "yarn lint && yarn test"
}
}
}