-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.69 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
{
"name": "react-outpost",
"version": "0.1.0-alpha.1",
"description": "⚛️ 📨 The React client SDK for Outpost. (Android/iOS/Web/Expo)",
"main": "dist",
"repository": "https://github.com/OutpostProtocol/react-outpost",
"author": "Sam Hatem (@sam__hatem) <sam@outpost-protocol.com> Alex Thomas (@cawfree) <hello@cawfree.com>",
"license": "MIT",
"private": false,
"keywords": [
"outpost",
"react",
"react-native",
"expo",
"crypto",
"arweave",
"ipfs"
],
"scripts": {
"build": "yarn ; babel src --plugins @babel/plugin-transform-typescript --extensions '.ts,.tsx' --out-dir dist ; rm -rf node_modules",
"prettify": "yarn prettier --write '**/*.tsx|**/*.ts'",
"lint": "eslint --fix --ext .ts,.tsx ./src",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-typescript": "^7.11.0",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/jsrsasign": "^8.0.8",
"@types/react": "^16.9.56",
"@types/type-check": "^0.3.27",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"jest": "^26.2.2",
"leasot": "^11.1.0",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"react": "^17.0.1"
},
"dependencies": {
"outpost-sdk": "^1.0.3"
}
}