-
Notifications
You must be signed in to change notification settings - Fork 487
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.87 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.87 KB
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
{
"name": "rxphelloworld",
"private": true,
"main": "index.js",
"version": "2.0.0",
"scripts": {
"rn-cli": "node scripts/react-native.js",
"start:android": "npm run rn-cli run-android",
"start:windows": "npm run rn-cli run-windows",
"start:ios": "npm run rn-cli run-ios",
"start:web": "cross-env platform=web webpack-dev-server --config=web/webpack/dev.js --progress --colors --mode=development",
"start:rn-dev-server": "npm run rn-cli start --reset-cache",
"build:web": "cross-env platform=web webpack --config=web/webpack/prod.js --progress --colors --mode=production",
"test": "jest -c jest/jest.config.js",
"test:watch": "npm run test --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest -c jest/jest.config.js --runInBand",
"lint": "eslint --config .eslintrc --ext .js src"
},
"devDependencies": {
"@babel/core": "7.7.4",
"@babel/plugin-proposal-decorators": "7.7.4",
"@babel/preset-env": "7.7.4",
"@react-native-community/cli": "9.1.3",
"babel-eslint": "10.0.3",
"babel-loader": "8.3.0",
"compression-webpack-plugin": "3.0.0",
"cross-env": "6.0.3",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"enzyme-to-json": "3.4.3",
"eslint": "6.7.1",
"eslint-loader": "4.0.2",
"eslint-plugin-jest": "23.1.0",
"eslint-plugin-react": "7.17.0",
"html-webpack-plugin": "5.5.0",
"jest": "29.1.2",
"metro-react-native-babel-preset": "0.57.0",
"rnpm-plugin-windows": "0.3.8",
"webpack": "5.76.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "3.11.3",
"webpack-merge": "4.2.2"
},
"dependencies": {
"react": "16.12.0",
"react-dom": "16.12.0",
"react-native": "0.70.2",
"react-native-windows": "1.0.0",
"reactxp": "^2.0.0",
"reactxp-imagesvg": "^2.0.0",
"reactxp-navigation": "^2.0.0",
"reactxp-video": "^2.0.0"
}
}