-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
74 lines (74 loc) · 1.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
{
"name": "react-native-storybook-loader",
"version": "2.0.5",
"repository": "https://github.com/elderfo/react-native-storybook-loader.git",
"bugs": "https://github.com/elderfo/react-native-storybook-loader/issues",
"author": "Chris Gestred <[email protected]>",
"license": "MIT",
"bin": {
"rnstl": "./out/rnstl-cli.js"
},
"files": [
"out/**/*"
],
"devDependencies": {
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/faker": "^4.1.12",
"@types/find-up": "^4.0.0",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.4",
"@types/mock-fs": "^4.10.0",
"@types/prettier": "^2.0.2",
"@types/yargs": "^15.0.5",
"codecov": "^3.7.1",
"faker": "^4.1.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"mock-fs": "^4.4.1",
"npm-run-all": "^4.1.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"uuid": "^8.2.0"
},
"dependencies": {
"find-up": "^4.1.0",
"glob": "^7.1.1",
"prettier": "^2.0.5",
"yargs": "^15.4.1"
},
"scripts": {
"prepublish": "tsc",
"build": "tsc",
"prepare": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --coverage",
"start": "ts-node src/rnstl-cli.ts",
"start:help": "ts-node src/rnstl-cli.ts --help",
"ci": "npm-run-all test:ci start"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add",
"jest --bail --findRelatedTests"
],
"*.ts": [
"prettier --single-quote --trailing-comma es5 --write",
"git add",
"jest --bail --findRelatedTests"
]
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src",
"./src/logger"
],
"pattern": "**/*.ts",
"outputFile": "./storybook/storyLoader.js"
}
}
}