-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "react-native-editor",
"description": "React Native Hybrid Editor Based on Draft.js",
"version": "0.0.1",
"main": "dist/component.js",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"run:ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"test": "jest",
"tsc:dev:watch": "tsc -w",
"clean": "rm -rf dist",
"dev": "npm run clean && tsc && concurrently 'npm start' 'npm run run:ios && npm run tsc:dev:watch'",
"xcode": "npm run clean && tsc && concurrently 'npm start' 'npm run tsc:dev:watch'"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react": "^15.0.3",
"@types/react-native": "^0.37.11",
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"concurrently": "^3.1.0",
"jest": "18.1.0",
"react": "~15.4.0-rc.4",
"react-native": "0.40.0",
"react-test-renderer": "~15.4.0-rc.4",
"typescript": "^2.1.5"
},
"jest": {
"preset": "react-native"
},
"files": [
"dist",
"lib"
],
"dependencies": {
"react-native-webview-invoke": "^0.3.10"
}
}