-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
109 lines (109 loc) · 3.74 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@telegram-apps/telegram-ui",
"version": "2.1.7",
"description": "World-class, ultimate UI developer toolkit.",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"./dist"
],
"sideEffects": [
"./dist/index.js",
"./dist/cjs/index.js"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "concurrently \"npm run build:test\" \"npm run build:types\" \"npm run build:js-css\"",
"build:test": "jest",
"build:types": "concurrently 'npm run tsc:*'",
"build:js-css": "concurrently \"npm run swc:*\" \"npm run postcss\"",
"postcss": "webpack --config webpack.styles.config.js",
"swc-base": "cross-env NODE_ENV=production swc src/ --config-file package.swcrc --extensions .tsx,.jsx,.ts,.js",
"swc:es6": "npm run swc-base -- -d dist -s",
"swc:cjs": "npm run swc-base -- -d dist/cjs -s -C module.type=commonjs",
"tsc:es6": "cross-env NODE_ENV=production tsc --emitDeclarationOnly --declaration -p tsconfig.dist.json && tsc-alias",
"tsc:cjs": "cross-env NODE_ENV=production tsc --emitDeclarationOnly --declaration --outDir dist/cjs/ -p tsconfig.dist.json && tsc-alias",
"dev": "storybook dev -p 6006 --docs",
"storybook:build": "storybook build --docs",
"storybook:publish": "rsync ./storybook-static/ xelene:/var/www/tgui.xelene.me -avz --exclude .git/ --exclude node_modules/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:Telegram-Mini-Apps/TelegramUI.git"
},
"author": "Ilya Smirnov",
"license": "MIT",
"bugs": {
"url": "https://github.com/Telegram-Mini-Apps/TelegramUI/issues"
},
"homepage": "https://github.com/Telegram-Mini-Apps/TelegramUI#readme",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-interactions": "^7.6.7",
"@storybook/addon-links": "^7.6.7",
"@storybook/addons": "^7.6.10",
"@storybook/react": "^7.6.7",
"@storybook/react-webpack5": "^7.6.7",
"@svgr/webpack": "^8.1.0",
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.105",
"@types/eslint": "^8",
"@types/jest": "^29.5.12",
"@types/react": "18.2.0",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "6.18.0",
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"cssnano": "^6.0.3",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"file-loader": "^6.2.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.7.7",
"postcss": "^8.4.33",
"postcss-gap-properties": "^5.0.1",
"postcss-import": "^16.0.0",
"postcss-loader": "^8.0.0",
"postcss-logical": "^7.0.1",
"postcss-modules": "^6.0.0",
"prettier": "^3.1.1",
"remove-files-webpack-plugin": "^1.5.0",
"storybook": "^7.6.7",
"swc-loader": "^0.2.3",
"swc-plugin-css-modules": "^0.1.7",
"swc-plugin-transform-remove-imports": "^1.10.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@floating-ui/react-dom": "^2.0.8",
"@swc/helpers": "^0.5.3",
"@twa-dev/types": "^7.0.0",
"@xelene/vaul-with-scroll-fix": "0.1.4"
},
"resolutions": {
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0"
}
}