-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.56 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "devtomaterial",
"version": "0.0.1",
"private": true,
"scripts": {
"test": "jest",
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios": "react-native run-ios",
"android": "react-native run-android",
"build-web": "webpack --config ./web/webpack.config.js --mode production && npm run copy-static",
"copy-static": "cp -r ./web/static/* ./web/dist",
"web": "webpack-dev-server --config ./web/webpack.config.js --mode development",
"server": "webpack-dev-server --config ./electron/webpack.config.js",
"electron": "electron ./electron/main.js"
},
"dependencies": {
"electron": "^4.0.0",
"material-bread": "^0.2.5",
"modal-enhanced-react-native-web": "^0.2.0",
"prettier": "^1.19.1",
"query-string": "^6.9.0",
"react": "16.8.3",
"react-dom": "^16.9.0",
"react-native": "0.59.0",
"react-native-iphone-x-helper": "^1.2.1",
"react-native-render-html": "^4.1.2",
"react-native-svg": "^9.13.3",
"react-native-svg-web": "^1.0.1",
"react-native-vector-icons": "*",
"react-native-web": "^0.11.7",
"react-responsive": "^8.0.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-router-native": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.5",
"eslint": "^5.12.1",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.55.0",
"react-test-renderer": "16.8.3",
"html-webpack-plugin": "^3.2.0",
"html-loader": "^0.5.5",
"webpack": "^4.29.6",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.2.1",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-syntax-export-default-from": "^7.2.0",
"eslint-import-resolver-alias": "^1.1.2",
"file-loader": "^4.2.0",
"ttf-loader": "^1.0.2"
},
"jest": {
"preset": "react-native"
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
}
}