-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
97 lines (97 loc) · 3.18 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
{
"name": "react-universal-ui",
"description": "Universal UI Kit for React Native and Web",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"bin": {
"ruui": "./cli/bin.js"
},
"files": [
"lib",
"cli",
"cli.js",
"index.d.ts",
"!**/__tests__"
],
"version": "1.0.78",
"scripts": {
"start": "npm run compile && npm run watch",
"watch": "concurrently --kill-others 'npm:watch-cli' 'npm:watch-coffee' 'npm:watch-es6' 'npm:watch-cf6'",
"watch-cli": "coffee --no-header -m -w -b -c -o ./cli-ruui ./src/cli/global",
"watch-coffee": "coffee --no-header -m -w -b -c -o ./js ./src",
"watch-es6": "babel --watch ./src --out-dir ./lib",
"watch-cf6": "babel --watch ./js --out-dir ./lib",
"compile": "npm run clean && npm run make-dir && npm run compile-cli && npm run compile-coffee && npm run compile-es6",
"compile-cli": "coffee --no-header -m -b -c -o ./cli-ruui ./src/cli/global",
"compile-coffee": "coffee --no-header -m -b -c -o ./js ./src",
"compile-es6": "bob build && BUILD=cli bob build && cp -r lib-cli/ lib && rm -rf lib-cli",
"clean": "rimraf ./js && rimraf ./lib",
"make-dir": "mkdirp -p ./js && mkdirp -p ./lib",
"native": "node node_modules/react-native/local-cli/cli.js start",
"install-cli": "npm run compile && npm pack && npm i -g react-universal-ui-1.0.66.tgz",
"release": "npm run compile && npm publish",
"test": "jest"
},
"license": "MIT",
"author": "Cloud Le",
"repository": {
"type": "git",
"url": "git://github.com/cloudle/ruui.git"
},
"dependencies": {
"setimmediate": "^1.0.5",
"tinycolor2": "^1.4.1"
},
"peerDependencies": {
"react-native-reanimated": "^1.13.0",
"react-native-svg": "^12.1.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@react-native-community/bob": "^0.16.2",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.4",
"chalk": "^2.4.1",
"coffeescript": "^2.3.2",
"concurrently": "^4.0.1",
"css-loader": "^3.2.0",
"eslint": "^6.7.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^4.5.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.57.0",
"mkdirp": "^0.5.1",
"progress-bar-webpack-plugin": "^1.11.0",
"react": "16.9.0",
"react-art": "^16.5.2",
"react-dom": "^16.12.0",
"react-native": "0.61.5",
"react-native-reanimated": "^1.13.2",
"react-native-svg": "^12.1.0",
"react-native-web": "^0.11.7",
"react-redux": "^6.0.0",
"react-refresh": "^0.9.0",
"react-test-renderer": "16.9.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"rimraf": "^2.6.3",
"sass-loader": "^10.1.0",
"style-loader": "^1.0.1",
"webpack": "^5.10.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.11.0"
},
"jest": {
"preset": "react-native"
}
}