-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
78 lines (78 loc) · 2.33 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
{
"name": "PrimerDemo",
"version": "0.0.1",
"private": true,
"scripts": {
"storybook:web": "start-storybook",
"storybook:ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"figma:webpack:watch": "webpack --config figma.webpack.config.js --watch",
"figma:webpack:hmr": "webpack --config figma.webpack.config.js && webpack-dev-server --config figma.webpack.ui.config.js",
"build": "build-storybook -o public"
},
"dependencies": {
"@emotion/styled": "^10.0.27",
"react": "16.8.6",
"react-figma": "0.1.2",
"react-native": "0.62.3",
"react-native-svg": "9.9.9",
"react-native-web": "^0.12.0-rc.1",
"yoga-layout-prebuilt": "^1.9.3"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/helper-compilation-targets": "^7.12.5",
"@babel/runtime": "^7.5.0",
"@react-native-community/eslint-config": "^0.0.3",
"@storybook/addon-actions": "^5.3.3",
"@storybook/addon-info": "^5.3.3",
"@storybook/addon-knobs": "^5.3.3",
"@storybook/addon-links": "^5.3.3",
"@storybook/addon-notes": "^5.3.3",
"@storybook/addon-ondevice-actions": "^5.3.3",
"@storybook/addon-ondevice-knobs": "^5.3.3",
"@storybook/addon-ondevice-notes": "^5.3.3",
"@storybook/addons": "^5.3.3",
"@storybook/react": "^5.3.3",
"@storybook/react-native": "^5.3.3",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.2",
"@types/react-native": "0.60.5",
"@types/react-test-renderer": "^16.9.0",
"awesome-typescript-loader": "^5.2.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-inline-import": "^3.0.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"metro-react-native-babel-preset": "0.54.1",
"react-docgen-typescript-loader": "^3.6.0",
"react-dom": "16.8.6",
"react-figma-webpack-config": "0.0.7",
"react-test-renderer": "16.8.6",
"svg-inline-loader": "^0.8.0",
"ts-loader": "^6.2.1",
"typescript": "^3.6.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
}
}