-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.12 KB
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
{
"name": "reactor",
"description": "Reusable presentational components",
"version": "0.12.9",
"license": "LGPL-3.0",
"devDependencies": {
"@babel/cli": "7.0.0",
"@babel/core": "7.0.0",
"@dump247/storybook-state": "latest",
"@sambego/storybook-styles": "latest",
"@storybook/addon-actions": "latest",
"@storybook/addon-console": "latest",
"@storybook/addon-knobs": "latest",
"@storybook/addon-notes": "latest",
"@storybook/addon-options": "latest",
"@storybook/addon-viewport": "latest",
"@storybook/addons": "latest",
"@storybook/react": "latest",
"@storybook/react-native": "latest",
"@storybook/storybook-deployer": "latest",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-plugin-react-native-web": "0.11.4",
"eslint": "5.14.1",
"eslint-config-airbnb": "latest",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.13.0",
"jest": "23.6.0",
"jest-fetch-mock": "2.1.2",
"metro-react-native-babel-preset": "0.54.1",
"react-native-scripts": "latest",
"react-test-renderer": "16.8.6",
"release-it": "10.1.0",
"storybook-addon-jsx": "latest"
},
"dependencies": {
"expo": "30.0.1",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-art": "16.8.6",
"react-dom": "16.8.6",
"react-native": "0.55.4",
"react-native-web": "0.11.4"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"build": "yarn run build:common && yarn run build:components && yarn run build:context",
"build:common": "babel common -d dist/common --copy-files --ignore '**/*.test.js'",
"build:components": "babel components -d dist/components --copy-files --ignore '**/*.test.js'",
"build:context": "babel context -d dist/context --copy-files --ignore '**/*.test.js'",
"start": "start-storybook -p 9001 -c .storybook",
"start:native": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"test": "jest",
"lint": "eslint common components context",
"release": "release-it"
}
}