-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.24 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
{
"name": "test",
"private": true,
"main": "index.js",
"version": "0.0.1",
"scripts": {
"rn-cli": "node node_modules/react-native/local-cli/cli.js",
"start:android": "yarn rn-cli run-android",
"start:windows": "yarn rn-cli run-windows",
"start:ios": "yarn 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": "yarn rn-cli start --reset-cache",
"build:web": "cross-env platform=web webpack --config=web/webpack/prod.js --progress --colors --mode=production",
"lint": "eslint -c .eslintrc src/**/*",
"test": "jest -c jest/jest.config.js",
"test:watch": "yarn test --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest -c jest/jest.config.js --runInBand",
"build:types": "tsc --emitDeclarationOnly",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -w"
},
"devDependencies": {
"@babel/core": "7.3.4",
"@babel/plugin-proposal-decorators": "7.3.0",
"@babel/preset-env": "7.3.4",
"@types/enzyme": "3.9.0",
"@types/jest": "24.0.9",
"@types/react": "16.7.21",
"@typescript-eslint/eslint-plugin": "1.4.2",
"@typescript-eslint/parser": "1.4.2",
"babel-loader": "8.0.5",
"babel-plugin-module-resolver": "^4.0.0",
"compression-webpack-plugin": "2.0.0",
"cross-env": "5.2.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.10.0",
"enzyme-to-json": "3.3.5",
"eslint": "5.15.0",
"eslint-loader": "2.1.2",
"eslint-plugin-jest": "22.3.0",
"eslint-plugin-react": "7.12.4",
"fork-ts-checker-webpack-plugin": "0.5.2",
"html-webpack-plugin": "3.2.0",
"jest": "24.1.0",
"metro-react-native-babel-preset": "0.53.0",
"react-native-svg": "^9.3.7",
"reactxp-imagesvg": "^1.6.0",
"rnpm-plugin-windows": "0.2.8",
"typescript": "3.3.3",
"webpack": "4.29.6",
"webpack-cli": "3.2.3",
"webpack-dev-server": "3.2.1",
"webpack-merge": "4.2.1"
},
"dependencies": {
"react": "16.7.0",
"react-dom": "16.7.0",
"react-native": "0.57.8",
"react-native-web": "^0.12.0",
"react-native-windows": "0.57.0-rc.5",
"reactxp": "1.6.0-rc.1",
"three": "^0.103.0"
}
}