-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.12 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
{
"name": "TrutooNative",
"version": "0.0.1",
"private": true,
"scripts": {
"start:web": "webpack serve --config web/webpack.config.js",
"start:android": "react-native run-android",
"start:ios": "react-native run-ios",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"core-js": "^3.6.5",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-hot-loader": "^4.13.0",
"react-native": "^0.63.3",
"react-native-web": "^0.14.4"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-proposal-optional-catch-binding": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@babel/runtime": "^7.12.1",
"@react-native-community/eslint-config": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-jest": "^26.6.1",
"babel-loader": "^8.1.0",
"babel-plugin-react-native-web": "^0.14.4",
"babel-preset-react-native": "^4.0.1",
"eslint": "^7.12.0",
"file-loader": "^6.1.1",
"fork-ts-checker-webpack-plugin": "^5.2.0",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.1",
"metro-react-native-babel-preset": "^0.63.0",
"mini-css-extract-plugin": "^1.2.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"prettier": "^2.1.2",
"react-native-web-image-loader": "^0.1.1",
"react-test-renderer": "16.14.0",
"stylelint-webpack-plugin": "^2.1.1",
"terser-webpack-plugin": "^5.0.1",
"typescript": "^4.0.3",
"url-loader": "^4.1.1",
"webpack": "^5.2.0",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0"
},
"optionalDependencies": {
"@types/jest": "^26.0.15",
"@types/react-native": "^0.63.30",
"@types/react-test-renderer": "^16.9.3"
}
}