This repository has been archived by the owner on Jun 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
75 lines (75 loc) · 2.88 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
{
"name": "margarita",
"license": "MIT",
"scripts": {
"mobile": "yarn workspace @kiwicom/margarita-mobile start",
"dev": "yarn concurrently \"yarn web\" \" yarn server\" ",
"server": "yarn workspace @kiwicom/margarita-graphql start",
"web": "yarn workspace @kiwicom/margarita-web dev",
"create-dotenv": "yarn babel-node ./scripts/create-dotenv.js",
"web:analyze": "yarn workspace @kiwicom/margarita-web analyze",
"docs": "yarn workspace @kiwicom/margarita-docs start",
"docs:deploy": "yarn workspace @kiwicom/margarita-docs deploy",
"landing-page": "yarn workspace @kiwicom/margarita-landing-page start",
"landing-page:deploy": "yarn workspace @kiwicom/margarita-landing-page deploy",
"test-ci": "yarn flow && yarn lint && yarn test --ci --color --maxWorkers=2",
"graphql:deploy": "yarn workspace @kiwicom/margarita-graphql deploy",
"voyager": "yarn workspace @kiwicom/margarita-voyager start",
"storybook:web:margarita-components": "yarn workspace @kiwicom/margarita-components storybook",
"storybook:mobile:margarita-components": "yarn workspace @kiwicom/margarita-mobile-storybook start:margarita-components",
"storybook:web:universal-components": "yarn workspace @kiwicom/universal-components storybook",
"storybook:mobile:universal-components": "yarn workspace @kiwicom/margarita-mobile-storybook start:universal-components",
"relay": "yarn babel-node scripts/relay-compiler.js",
"lint": "yarn jest --config=.jest-eslint.config.js",
"flow": "flow --include-warnings",
"test": "yarn monorepo-run-tests",
"postinstall": "yarn workspace @kiwicom/margarita-mobile postinstall"
},
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"dependencies": {
"@kiwicom/margarita-graphql": "^0",
"@kiwicom/margarita-mobile": "^0",
"@kiwicom/margarita-relay": "^0",
"better-npm-run": "^0.1.1",
"date-fns": "^2.0.0-alpha.33",
"dotenv": "^7.0.0",
"graphql-iso-date": "^3.6.1",
"next": "^8.0.3",
"next-plugin-transpile-modules": "^2.0.0",
"ramda": "^0.26.1",
"react": "16.5.0",
"react-art": "^16.8.3",
"react-dom": "^16.8.3"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/preset-flow": "^7.0.0",
"@kiwicom/babel-preset-kiwicom": "^2.8.0",
"@kiwicom/eslint-config": "^4.0.0",
"@kiwicom/monorepo": "^0.19.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-preset-expo": "^5.0.0",
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"flow-bin": "^0.98.0",
"jest": "^24.8.0",
"jest-expo": "^32.0.1",
"jest-fetch-mock": "^2.0.1",
"react-native-testing-library": "^1.4.2",
"react-test-renderer": "^16.8.3"
},
"resolutions": {
"**/babel-core": "7.0.0-bridge.0",
"babel-jest": "^24"
},
"peerDependencies": {
"graphql": "^",
"jest-fetch-mock": "^"
}
}