-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
90 lines (90 loc) · 2.99 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
{
"name": "@twa-dev/mark42",
"version": "0.0.38",
"main": "dist/index.js",
"homepage": "https://twa-dev.github.io/mark42",
"sideEffects": [
"*.css",
"index.js"
],
"keywords": [
"@twa-dev",
"telegram",
"uikit",
"bot"
],
"repository": "https://github.com/twa-dev/mark42.git",
"author": "Artur Stambultsian <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@linaria/babel-preset": "^4.1.2",
"@linaria/cli": "^4.1.2",
"@linaria/core": "^4.1.1",
"@linaria/react": "^4.1.2",
"@linaria/stylelint": "^4.1.3",
"@linaria/webpack-loader": "^4.1.2",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-docs": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/addons": "^6.5.10",
"@storybook/builder-webpack4": "^6.5.10",
"@storybook/manager-webpack4": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@storybook/theming": "^6.5.10",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@testing-library/react": "^13.4.0",
"@types/babel__core": "^7.1.19",
"@types/jest": "^29.1.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"babel-jest": "^29.1.2",
"babel-loader": "^8.2.5",
"browserslist": "^4.21.3",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.1",
"gh-pages": "^4.0.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"postcss": "^8.4.16",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sha1": "^1.1.1",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^9.0.0",
"typescript": "^4.7.4",
"yarn-release": "^1.10.3"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"scripts": {
"lint:es": "eslint --ext .ts,.tsx,.js ./",
"lint:css": "stylelint \"src/**/*.styles.ts\"",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest",
"start": "start-storybook -p 6006",
"build:package": "rm -rf dist && tsc --outDir dist && babel src --out-dir dist --extensions .tsx,.ts && linaria -o dist --source-root src --insert-css-requires dist \"src/**/*.ts\" --modules=es2015",
"deploy:package": "yarn release - --tag --commit --push --public --silent",
"build:storybook": "build-storybook",
"deploy:storybook": "gh-pages -d storybook-static && rm -rf storybook-static"
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"@twa-dev/sdk": "^6.7.1",
"classnames": "^2.3.1"
}
}