-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.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
{
"name": "MyTSProject",
"version": "0.0.1",
"private": true,
"main": "./html/Web.bundle/script.js",
"scripts": {
"start": "react-native start",
"web": "parcel index.html",
"ios": "npm run build && npx react-native run-ios",
"android": "npm run build && npx react-native run-android",
"build": "parcel build script.ts && cp dist/script.js html/Web.bundle/script.js",
"test": "jest"
},
"dependencies": {
"lepont": "^0.10.1",
"react": "16.8.6",
"react-native": "0.62.3",
"react-native-webview": "^11.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/runtime": "^7.5.0",
"@react-native-community/eslint-config": "^0.0.3",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.2",
"@types/react-native": "^0.60.14",
"@types/react-test-renderer": "^16.9.0",
"babel-jest": "^24.1.0",
"jest": "^24.1.0",
"metro-react-native-babel-preset": "0.54.1",
"parcel-bundler": "^1.12.4",
"react-test-renderer": "16.8.6",
"typescript": "^3.6.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}