-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.25 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
{
"name": "react-shared",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test:native": "jest --config \"./config/native/jest.config.js\"",
"test:web": "jest --config \"./config/web/jest.config.js\"",
"test": "yarn run test:web && yarn run test:native",
"web": "webpack-dev-server --config \"./config/web/webpack.config.js\"",
"ios": "react-native run-ios",
"android": "react-native run-android",
"stats": "webpack --config \"./config/web/webpack.config.js\" --json > stats.json",
"component": "npx crcf"
},
"dependencies": {
"html-webpack-plugin": "^3.2.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-native": "0.55.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-native": "4.0.0",
"create-react-component-folder": "https://github.com/donovantc/create-react-component-folder.git",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "21.2.1",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.7.2"
}
}