generated from chibat/chrome-extension-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.4 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
{
"name": "notion-like-button",
"version": "1.2.2",
"description": "chrome-extension-typescript-starter",
"main": "index.js",
"scripts": {
"dev": "webpack --config webpack/webpack.dev.js --watch",
"build:clean": "rimraf dist",
"build:webpack": "NODE_ENV=production webpack --config webpack/webpack.prod.js",
"build:zip": "zip -r dist.zip dist",
"build": "run-s 'build:*'",
"lint": "run-s 'lint:*'",
"lint:tsc": "tsc",
"lint:eslint": "eslint --cache './**/*.{js,jsx,ts,tsx}'",
"lint:prettier": "prettier --cache --check './**/*.{js,jsx,ts,tsx}'",
"fix": "run-s 'fix:*'",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"author": "Yusuke Fujiki",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fujikky/notion-like-button.git"
},
"dependencies": {
"@linaria/core": "6.2.0",
"@linaria/react": "6.2.1",
"@notionhq/client": "2.2.7",
"@xobotyi/scrollbar-width": "1.9.5",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@babel/preset-typescript": "7.26.0",
"@linaria/babel-preset": "5.0.4",
"@linaria/shaker": "5.0.3",
"@storybook/addon-actions": "7.6.20",
"@storybook/addon-essentials": "7.6.20",
"@storybook/addon-links": "7.6.20",
"@storybook/react": "7.6.20",
"@storybook/react-webpack5": "7.6.20",
"@tsconfig/node16-strictest": "1.0.4",
"@types/chrome": "0.0.280",
"@types/jest": "29.5.14",
"@types/mini-css-extract-plugin": "2.5.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@wyw-in-js/webpack-loader": "0.5.5",
"babel-loader": "9.2.1",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"eslint": "8.57.1",
"eslint-config-timetree": "1.8.0",
"mini-css-extract-plugin": "2.9.2",
"npm-run-all2": "7.0.1",
"prettier": "2.8.8",
"rimraf": "6.0.1",
"storybook": "7.6.20",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "4.9.5",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"webpack-merge": "6.0.1"
},
"browserslist": [
">0.5%",
"not dead",
"not ie > 0",
"not op_mini all"
],
"packageManager": "[email protected]"
}