-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
89 lines (89 loc) · 3.01 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
{
"name": "uikit",
"version": "1.0.0",
"description": "",
"main": "Example/index.js",
"private": true,
"workspaces": [
"packages/*",
"kit/*",
"casts/*",
"stories/*",
"plugins/*",
"Example",
"localization"
],
"scripts": {
"postinstall": "./postinstall.sh",
"reinstall": "rm -rf node_modules && npx lerna bootstrap && npx lerna run prepare",
"deduplicate": "yarn yarn-deduplicate -s fewer yarn.lock",
"test": "jest",
"flow": "flow check",
"tsc": "lerna run tsc",
"tsc-example": "cd ./Example && yarn run tsc",
"test:coverage": "jest --coverage",
"web": "webpack-dev-server -d --config Example/webpack.config.js --progress --colors --host 0.0.0.0 --display-cached",
"cycles:check": "node scripts/checkCircularDependencies.js",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"eslint:check": "eslint . --resolve-plugins-relative-to .",
"eslint:fix": "eslint --fix . --resolve-plugins-relative-to ."
},
"pre-commit": [
"flow",
"tsc",
"tsc-example",
"eslint:check",
"prettier:check",
"cycles:check"
],
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-plugin": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.0",
"@testing-library/react-native": "5.0.3",
"@types/jest": "26.0.24",
"@types/lodash": "^4.14.175",
"@types/qrcode": "^1.4.0",
"@types/react-native": "0.67.5",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-jest": "26.6.3",
"babel-plugin-module-resolver": "5.0.0",
"dpdm": "3.7.1",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-babel-module": "5.3.1",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-detox": "1.0.0",
"eslint-plugin-flowtype": "5.9.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-module-resolver": "1.4.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"flow-bin": "0.162.0",
"jest": "26.6.3",
"jetifier": "2.0.0",
"json-to-flowtype-generator": "0.9.3",
"lerna": "3.22.1",
"madge": "4.0.2",
"metro-react-native-babel-preset": "0.66.2",
"pre-commit": "1.2.2",
"prettier": "2.3.2",
"react-test-renderer": "17.0.2",
"typescript": "^4.9.5",
"yarn-deduplicate": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tonlabs/UIKit.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tonlabs/UIKit/issues"
},
"homepage": "https://github.com/tonlabs/UIKit#readme"
}