forked from EOSIO/ual-reactjs-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
{
"name": "ual-reactjs-renderer",
"version": "0.2.0",
"main": "dist/index.js",
"author": {
"name": "block.one",
"url": "https://block.one/"
},
"collaborators": [
"Nasser Abouelazm",
"Mike Manfredi"
],
"license": "MIT",
"scripts": {
"ts-build": "tsc --build tsconfig.json",
"build": "babel src --out-dir dist --source-maps",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest",
"watch-test": "jest --watch --verbose=true",
"eslint": "eslint src/**/*.js",
"prepare": "yarn build",
"docs": "jsdoc src -r -d docs"
},
"dependencies": {
"i18next": "14.0.1",
"i18next-browser-languagedetector": "2.2.4",
"prop-types": "15.7.1",
"react": "16.8.1",
"react-dom": "16.6.3",
"react-icons": "3.4.0",
"react-tooltip": "3.9.2",
"styled-components": "4.1.3",
"universal-authenticator-library": "0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@blockone/eslint-config-blockone": "^1.1.1",
"@blockone/tslint-config-blockone": "^1.0.0",
"@types/i18next": "^12.1.0",
"@types/i18next-browser-languagedetector": "^2.0.1",
"@types/jest": "^24.0.15",
"@types/react": "15.0.4",
"babel-jest": "^24.8.0",
"babel-polyfill": "^6.26.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^6.3.0",
"eslint-plugin-no-exclusive-tests": "^1.0.0-rc.1",
"jest": "^24.9.0",
"jest-enzyme": "^7.0.1",
"jsdoc": "^3.5.5",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
}
}