-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.97 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
{
"name": "react-cross-ui-boilerplate",
"version": "0.2.0",
"main": "dist",
"types": "dist/types/index.d.ts",
"repository": "https://github.com/KentoMoriwaki/react-cross-ui-boilerplate",
"author": "KentoMoriwaki <[email protected]>",
"license": "MIT",
"scripts": {
"postinstall": "patch-package",
"start": "gulp watch --platform=web",
"build": "gulp build --platform=web",
"start-ios": "gulp watch --platform=ios",
"build-ios": "gulp build --platform=ios",
"start-android": "gulp watch --platform=android",
"build-android": "gulp build --platform=android",
"build-all": "yarn run build-ios && yarn run build-android && yarn run build",
"prepublish": "yarn run build-all"
},
"dependencies": {
"react-native-linear-gradient": "^2.4.2"
},
"peerDependencies": {
"react": "16.4.0",
"react-dom": "16.4.0",
"react-native": "^0.56.0",
"react-native-web": "^0.8.9",
"react-primitives": "^0.6.1"
},
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@types/react-primitives": "^0.6.2",
"babel-loader": "^8.0.2",
"del": "^3.0.0",
"event-stream": "^3.3.5",
"gulp": "^3.9.1",
"gulp-babel": "^8.0.0",
"gulp-cached": "^1.1.1",
"gulp-eol": "^0.2.0",
"gulp-rename": "^1.4.0",
"gulp-shell": "^0.6.5",
"gulp-typescript": "^5.0.0-alpha.3",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.1",
"patch-package": "^5.1.1",
"postinstall-postinstall": "^1.0.0",
"react": "16.4.0",
"react-dom": "16.4.0",
"react-native": "^0.56.0",
"react-native-web": "^0.8.9",
"react-primitives": "^0.6.1",
"run-sequence": "^2.2.1",
"typescript": "^3.0.3",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
}
}