forked from brandingbrand/flagship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 4.27 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
{
"private": true,
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "rimraf packages/*/dist",
"commitmsg": "commitlint -e $GIT_PARAMS",
"reset:modules": "rimraf node_modules yarn.lock packages/*/node_modules",
"reset": "yarn reset:modules & yarn clean",
"lint:ts": "fscodestyle",
"lint:md": "markdownlint --ignore \"{**/@(node_modules|Pods)/**/*.md,**/CHANGELOG.md}\" \"**/*.md\"",
"lint": "run-p lint:ts lint:md",
"precommit": "npm-run-all prepare -p lint test",
"prepare": "lerna run prepare",
"prepare:fscodestyle": "lerna run --stream --scope @brandingbrand/fscodestyle prepare",
"test": "jest --coverage --colors --config jest.json",
"test:success": "codecov -t 29bcd057-2127-4cde-8826-ad19873ddba0",
"dev:storybook": "start-storybook -p 9001 -c .storybook",
"build:storybook": "build-storybook -o docs/storybook -c .storybook",
"release": "lerna publish",
"tsc:watch": "lerna run --parallel tsc:watch",
"testproject:init": "lerna run --stream --scope @brandingbrand/fstestproject init",
"testproject:run-ios": "run-p testproject:run-bundler tsc:watch testproject:compile-ios",
"testproject:run-android": "run-p testproject:run-bundler tsc:watch testproject:compile-android",
"testproject:run-bundler": "lerna run --stream --scope @brandingbrand/fstestproject start",
"testproject:compile-ios": "lerna run --stream --scope @brandingbrand/fstestproject compile-ios",
"testproject:compile-android": "lerna run --stream --scope @brandingbrand/fstestproject compile-android",
"ship:init": "lerna run --stream --scope @brandingbrand/pirateship init",
"ship:run-ios": "run-p ship:run-bundler tsc:watch ship:compile-ios",
"ship:run-android": "run-p ship:run-bundler tsc:watch ship:compile-android",
"ship:run-bundler": "lerna run --stream --scope @brandingbrand/pirateship start",
"ship:compile-ios": "lerna run --stream --scope @brandingbrand/pirateship compile-ios",
"ship:compile-android": "lerna run --stream --scope @brandingbrand/pirateship compile-android",
"build:docs": "typedoc --tsconfig ./tsconfig/tsconfig.docs.json",
"docs": "run-s build:docs build:storybook"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@commitlint/config-lerna-scopes": "^7.0.0",
"@commitlint/travis-cli": "^7.0.0",
"@storybook/addon-actions": "4.0.0-alpha.8",
"@storybook/addon-knobs": "4.0.0-alpha.8",
"@storybook/addon-viewport": "4.0.0-alpha.8",
"@storybook/addons": "4.0.0-alpha.8",
"@storybook/react": "4.0.0-alpha.8",
"@types/credit-card-type": "^5.0.1",
"@types/i18n-js": "^3.0.0",
"@types/jest": "^23.0.0",
"@types/jwt-decode": "^2.2.1",
"@types/lodash-es": "^4.17.0",
"@types/pluralize": "^0.0.28",
"@types/qs": "^6.5.1",
"@types/react": "^16.3.16",
"@types/react-dom": "^16.0.5",
"@types/react-native": "^0.55.17",
"@types/react-native-i18n": "^2.0.0",
"@types/react-native-navigation": "^1.1.11",
"@types/react-native-permissions": "^1.1.1",
"@types/react-native-push-notification": "^3.0.2",
"@types/react-native-touch-id": "^4.0.0",
"@types/react-redux": "^6.0.0",
"@types/react-router-dom": "^4.2.6",
"@types/redux-logger": "^3.0.6",
"@types/storybook__addon-actions": "^3.0.3",
"@types/storybook__addon-knobs": "^3.3.1",
"@types/storybook__react": "^3.0.7",
"@types/url-parse": "^1.1.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-native": "^4.0.0",
"codecov": "^3.0.2",
"husky": "^0.14.3",
"jest": "^23.1.0",
"lerna": "^2.11.0",
"markdownlint-cli": "^0.10.0",
"npm-run-all": "^4.1.3",
"react-art": "^16.4.0",
"react-native-web": "^0.8.2",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.6",
"ts-loader": "^4.3.0",
"typedoc": "^0.11.1",
"typedoc-plugin-monorepo": "^0.1.0",
"typescript": "^2.9.1"
},
"greenkeeper": {
"commitMessages": {
"dependencyUpdate": "fix: update ${dependency} to version ${version}",
"devDependencyUpdate": "chore: update ${dependency} to version ${version}"
}
},
"workspaces": [
"packages/*"
]
}