forked from microsoft/reactxp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.28 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
{
"name": "reactxp",
"version": "1.1.0",
"description": "Cross-platform abstraction layer for writing React-based applications a single time that work identically across web, React Native, and Electron distribution",
"author": "ReactXP Team <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm run tslint && tsc",
"tslint": "tslint --project tsconfig.json -r tslint.json -r ./node_modules/tslint-microsoft-contrib --fix || true"
},
"dependencies": {
"@types/lodash": "^4.14.80",
"@types/react": "^16.0.36",
"@types/react-dom": "^16.0.3",
"assert": "^1.3.0",
"ifvisible": "^1.1.0",
"lodash": "^4.17.4",
"prop-types": "^15.5.9",
"rebound": "^0.0.13",
"subscribableevent": "^1.0.0",
"synctasks": "^0.3.1"
},
"peerDependencies": {
"react": "16.2.0",
"react-dom": "16.2.0",
"react-native": "^0.53.3",
"react-native-windows": "^0.53.0"
},
"devDependencies": {
"typescript": "2.7.2",
"tslint": "5.8.0",
"tslint-microsoft-contrib": "5.0.0"
},
"homepage": "https://microsoft.github.io/reactxp/",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/reactxp/"
},
"bugs": {
"url": "https://github.com/microsoft/reactxp/issues"
},
"types": "dist/ReactXP.d.ts"
}