forked from brandingbrand/flagship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 4.4 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
100
{
"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 --colors --config jest.json",
"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:build-ios": "lerna run --stream --scope @brandingbrand/pirateship build-ios",
"ship:build-web-demo": "lerna run --stream --scope @brandingbrand/pirateship build-web-demo",
"ship:compile-ios": "lerna run --stream --scope @brandingbrand/pirateship compile-ios",
"ship:compile-android": "lerna run --stream --scope @brandingbrand/pirateship compile-android",
"ship:compile-web": "lerna run --stream --scope @brandingbrand/pirateship compile-web",
"build:docs": "typedoc --tsconfig ./tsconfig/tsconfig.docs.json",
"docs": "run-s build:docs build:storybook"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/polyfill": "^7.0.0",
"@brandingbrand/greenkeeper-lockfile": "^0.0.1",
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/config-lerna-scopes": "^7.1.2",
"@commitlint/travis-cli": "^7.1.2",
"@storybook/addon-actions": "4.1.18",
"@storybook/addon-knobs": "4.1.18",
"@storybook/addon-viewport": "4.1.18",
"@storybook/addons": "4.1.18",
"@storybook/react": "4.1.18",
"@types/credit-card-type": "^7.0.0",
"@types/i18n-js": "^3.0.0",
"@types/jest": "^23.0.0",
"@types/jwt-decode": "^2.2.1",
"@types/lodash-es": "^4.17.1",
"@types/memoize-one": "^4.1.1",
"@types/pluralize": "^0.0.29",
"@types/qs": "^6.5.1",
"@types/react": "^16.6.3",
"@types/react-dom": "^16.0.11",
"@types/react-native": "^0.57.30",
"@types/react-native-i18n": "^2.0.0",
"@types/react-native-navigation": "^1.1.12",
"@types/react-native-permissions": "^1.1.1",
"@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.4.1",
"babel-jest": "^24.8.0",
"coveralls": "^3.0.2",
"husky": "^0.14.3",
"jest": "^24.8.0",
"lerna": "^3.4.0",
"markdownlint-cli": "^0.16.0",
"metro-react-native-babel-preset": "^0.54.1",
"npm-run-all": "^4.1.3",
"react-art": "^16.4.0",
"react-native-web": "^0.11.1",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.6",
"ts-loader": "^4.3.0",
"typedoc": "^0.12.0",
"typedoc-plugin-monorepo": "^0.1.0",
"typescript": "~3.0.0"
},
"greenkeeper": {
"commitMessages": {
"dependencyUpdate": "fix: update ${dependency} to version ${version}",
"devDependencyUpdate": "chore: update ${dependency} to version ${version}"
}
},
"workspaces": [
"packages/*"
]
}