-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
74 lines (74 loc) · 2.28 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
{
"name": "typescript-react-embedded-widget-starter",
"version": "0.0.11",
"description": "building an embedded widget with react and typescript",
"main": "dist/embedded-widget.js",
"author": "Yuya Kakui https://github.com/kyaukyuai",
"license": "MIT",
"keywords": [
"sdk",
"react",
"typescript",
"widget",
"embedded",
"template"
],
"scripts": {
"build": "NODE_ENV=production webpack",
"dev": "webpack serve --open",
"lint": "eslint",
"prepare": "yarn run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@styled-icons/ionicons-sharp": "^10.46.0",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/core": "7.19.1",
"@babel/plugin-proposal-function-sent": "7.18.6",
"@babel/plugin-proposal-throw-expressions": "7.18.6",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/preset-env": "7.19.1",
"@babel/preset-react": "7.18.6",
"@storybook/addon-actions": "6.5.12",
"@storybook/addon-essentials": "6.5.12",
"@storybook/addon-interactions": "6.5.12",
"@storybook/addon-links": "6.5.12",
"@storybook/builder-webpack5": "6.5.12",
"@storybook/manager-webpack5": "6.5.12",
"@storybook/react": "6.5.12",
"@storybook/testing-library": "0.0.13",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "5.38.0",
"babel-loader": "8.2.5",
"babel-plugin-styled-components": "2.0.7",
"babel-preset-airbnb": "5.0.0",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard-with-typescript": "23.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.3.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-storybook": "0.6.4",
"javascript-obfuscator": "4.0.0",
"prettier": "2.7.1",
"ts-loader": "9.4.1",
"ts-node": "10.9.1",
"typescript": "*",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.11.1",
"webpack-obfuscator": "3.5.1"
},
"resolutions": {
"styled-components": "^5"
}
}