This repository has been archived by the owner on Nov 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 4.81 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "multi-platform-stock-tracker",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"clean": "rm -r dist",
"android-debug": "[ -d \"android\" ] || npm run eject && ENV='dev' PLATFORM='native' ts-node --inspect node_modules/react-native/local-cli/cli.js run-android --config $(pwd)/build-config/rn-cli.config.js",
"android": "[ -d \"android\" ] || npm run eject && ENV='dev' PLATFORM='native' ts-node node_modules/react-native/local-cli/cli.js run-android --config $(pwd)/build-config/rn-cli.config.js",
"ios-debug": "[ ! -d \"ios\" ] && npm run eject; ENV='dev' PLATFORM='native' ts-node --inspect node_modules/react-native/local-cli/cli.js run-ios --config $(pwd)/build-config/rn-cli.config.js",
"ios": "[ ! -d \"ios\" ] && npm run eject; ENV='dev' PLATFORM='native' ts-node node_modules/react-native/local-cli/cli.js run-ios --config $(pwd)/build-config/rn-cli.config.js",
"eject": "react-native eject --config \"$(pwd)/build-config/rn-cli.config.js\"",
"web-debug": "ENV='dev' PLATFORM='web' webpack --config build-config/webpack.web.config.ts --mode development",
"web": "ENV='dev' PLATFORM='web' webpack --config build-config/webpack.web.config.ts --mode development",
"web-dev-server": "npm run web && ENV=dev PLATFORM=web npm run cmd -- webpack-dev-server --config build-config/webpack.web.config.ts --open",
"desktop": "ENV='dev' PLATFORM='desktop' webpack --config build-config/webpack.desktop.config.ts --mode development && electron ./dist/bundle.desktop.js",
"react-native": "ts-node node_modules/react-native/local-cli/cli.js $@",
"cmd": "node_modules/.bin/$@",
"unit-test": "ENV='dev' PLATFORM='web' node --inspect node_modules/.bin/jest -i --config ./test/test-config/jest.unit.config.json --no-cache --env='jsdom'",
"ui-test": "ENV='dev' PLATFORM='web' node --inspect node_modules/.bin/jest -i --config ./test/test-config/jest.ui.config.json --no-cache --env='jsdom'",
"sit-test": "ENV='dev' PLATFORM='web' node --inspect node_modules/.bin/jest -i --config ./test/test-config/jest.sit.config.json --no-cache --env='jsdom'",
"test": "ENV='dev' PLATFORM='web' node --inspect node_modules/.bin/jest -i --config ./test/test-config/jest.all.config.json --no-cache --env='jsdom'",
"pretty": "prettier --write --config 'prettierrc.json' --ignore-path '.prettierignore' '*' '{src,test,build-config}/**/*'",
"lint": "tslint --project './tsconfig.json' --config './.tslint.json' '*.{js,ts,jsx,tsx}' '{src,test,build-config}/**/*.{js,ts,jsx,tsx}'"
},
"dependencies": {
"electron": "^3.0.5",
"react": "16.6.0-alpha.8af6728",
"react-art": "16.6.0-alpha.8af6728",
"react-dom": "16.6.0-alpha.8af6728",
"react-native": "^0.57.4",
"react-native-electron": "^0.9.0",
"react-native-vector-icons": "^6.1.0",
"react-native-web": "^0.9.3",
"react-navigation": "^3.0.9",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-native": "^4.3.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/chai": "^4.1.7",
"@types/clean-webpack-plugin": "^0.1.2",
"@types/enzyme": "^3.1.15",
"@types/html-webpack-plugin": "^3.2.0",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.2",
"@types/react": "^16.4.18",
"@types/react-native": "^0.57.7",
"@types/react-native-vector-icons": "^4.6.4",
"@types/react-router-dom": "^4.3.1",
"@types/react-router-native": "^4.2.3",
"@types/webpack": "^4.4.22",
"@types/webpack-dev-server": "^3.1.1",
"babel-jest": "23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-module-resolver": "^3.1.1",
"chai": "^4.2.0",
"clean-webpack-plugin": "^0.1.19",
"core-js": "^2.5.7",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-canvas-mock": "^1.1.0",
"jest-spec-reporter": "^1.0.5",
"jsdom": "^13.1.0",
"metro-react-native-babel-preset": "0.48.1",
"prettier": "^1.15.2",
"react-native-typescript-transformer": "^1.2.10",
"react-test-renderer": "16.6.0-alpha.8af6728",
"sinon": "^7.2.2",
"ts-loader": "^5.3.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"tslint-config-standard": "^8.0.1",
"tslint-react": "^3.6.0",
"typescript": "^3.1.6",
"url-loader": "^1.1.2",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"directories": {
"test": "test",
"lib": "src",
"doc": "docs",
"bin": "scripts"
}
}