forked from react-native-training/reactxp-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 802 Bytes
/
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
{
"name": "rxapp",
"version": "0.0.1",
"private": true,
"scripts": {
"web-watch": "webpack --progress --colors --watch",
"rn-watch": "tsc --watch",
"start": "node node_modules/react-native/local-cli/cli.js start",
"install-deps": "npm i"
},
"devDependencies": {
"@types/node": "^7.0.12",
"@types/webpack": "^2.2.14",
"awesome-typescript-loader": "3.1.2",
"source-map-loader": "^0.1.6",
"ts-node": "^3.0.2",
"typescript": "2.1.6",
"webpack": "2.2.1"
},
"dependencies": {
"reactxp": "0.42.0-rc.3",
"react": "^15.4.1",
"react-native": "^0.42.0",
"react-addons-perf": "15.5.0-rc.2",
"react-addons-test-utils": "15.5.1",
"react-dom": "15.5.3",
"react-native-windows": "^0.33.0"
},
"jest": {
"preset": "react-native"
}
}