-
Notifications
You must be signed in to change notification settings - Fork 492
/
Copy pathpackage.json
42 lines (42 loc) · 1.39 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
{
"name": "rxptest",
"version": "2.0.0",
"private": true,
"main": "index.js",
"scripts": {
"sync": "sync-glob '../../dist' ./node_modules/reactxp/dist",
"web-watch": "webpack --progress --colors --watch",
"rn-watch": "tsc --watch",
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "node node_modules/react-native/local-cli/cli.js run-android",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"windows": "node node_modules/react-native/local-cli/cli.js run-windows",
"web": "webpack-dev-server",
"tslint": "tslint --project tsconfig.json -r tslint.json -r ./node_modules/tslint-microsoft-contrib --fix || true"
},
"devDependencies": {
"@types/node": "^12.12.14",
"@types/webpack": "^4.41.0",
"awesome-typescript-loader": "^5.2.1",
"rnpm-plugin-windows": "^0.3.8",
"source-map-loader": "^0.2.4",
"sync-glob": "^1.4.0",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-loader": "^3.5.4",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"react": "16.12.0",
"react-dom": "16.12.0",
"react-native": "0.59.10",
"react-native-windows": "0.59.0-rc.3",
"reactxp": "^2.0.0",
"reactxp-netinfo": "^2.0.0",
"reactxp-webview": "^2.0.0"
}
}