-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.57 KB
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": "bara-react",
"license": "MIT",
"description": "BaraJS for React creative",
"homepage": "https://barajs.dev",
"repository": "https://github.com/barajs/bara-react",
"version": "3.1.1",
"module": "dist/index.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"src/lib"
],
"dependencies": {
"bara": "^2.4.0",
"react-native-web": "^0.21.0"
},
"devDependencies": {
"@semantic-release/changelog": "3.0.6",
"@semantic-release/git": "7.0.18",
"@types/jest": "24.9.1",
"@types/node": "11.15.54",
"@types/react": "16.14.70",
"@types/react-dom": "16.9.25",
"@types/react-native": "0.73.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-scripts": "2.1.8",
"semantic-release": "15.14.0",
"tslint": "5.20.1",
"tslint-config-airbnb": "5.11.2",
"tslint-config-prettier": "1.18.0",
"tslint-react": "4.2.0",
"typescript": "3.9.10"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8",
"bara": ">=2.4"
},
"scripts": {
"compile": "rm -rf dist && yarn compile:tsc",
"compile:tsc": "tsc -b ./tsconfig.lib.json",
"compile:watch": "tsc -b ./tsconfig.lib.json -w",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}