-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.59 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
{
"name": "react-platformula",
"version": "0.1.19",
"description": "Components and tools to write cross-platform react apps",
"scripts": {
"lint": "eslint --ext .js,.jsx .",
"lint:error": "npm run lint -- --quiet",
"lint:fix": "npm run lint -- --fix",
"lint:report": "npm run lint -- --format html -o ./report.html",
"test": "jest",
"test:watch": "npm test -- --watch",
"build": "node ./bin/build.js",
"build:all": "node ./bin/build-all.js",
"deploy": "node ./bin/deploy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uvop/react-platformula.git"
},
"keywords": [
"react",
"multi",
"platform"
],
"author": "unimonkiez",
"license": "ISC",
"bugs": {
"url": "https://github.com/uvop/react-platformula/issues"
},
"homepage": "https://github.com/uvop/react-platformula#readme",
"dependencies": {
"@omerman/react-native-wheel-picker-android": "^1.1.1",
"babel-runtime": "^6.26.0",
"color": "^2.0.1",
"create-react-provider": "^1.0.0",
"jss": "^9.4.0",
"react-native-device-info": "^0.13.0",
"react-native-keep-awake": "^2.0.6",
"uuid": "^3.1.0"
},
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-native": "*"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^22.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jest": "^22.0.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-native": "^0.52.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"webpack": "^3.10.0",
"webpack-node-externals": "^1.6.0"
},
"jest": {
"preset": "react-native",
"globals": {
"__DEV__": true,
"__IOS__": true,
"__ANDROID__": true,
"__WEB__": true
},
"transform": {
"^.+\\.jsx?$": "<rootDir>/bin/jest-jsx-transform.js"
},
"setupTestFrameworkScriptFile": "./bin/jest-test-setup.js",
"moduleFileExtensions": [
"web.js",
"web.jsx",
"js",
"jsx"
],
"moduleNameMapper": {
"^src/(.*)$": "<rootDir>/src/$1"
}
}
}