-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
48 lines (48 loc) · 1.5 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
{
"name": "bezier-figma-plugin",
"version": "0.6.19",
"private": true,
"description": "Figma plugin that helps build Bezier design system and increase productivity.",
"repository": {
"type": "git",
"url": "https://github.com/channel-io/bezier-react",
"directory": "packages/bezier-figma-plugin"
},
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"lint": "run-p 'lint:*'",
"lint:js": "TIMING=1 eslint --cache .",
"lint:style": "stylelint --allow-empty-input --cache '**/*.styled.{js,ts}'",
"typecheck": "tsc --noEmit",
"clean": "run-s 'clean:*'",
"clean:build": "rm -rf dist",
"clean:cache": "rm -rf node_modules .turbo .eslintcache .jestcache"
},
"author": "Channel Corp.",
"license": "Apache-2.0",
"devDependencies": {
"@figma/plugin-typings": "^1.87.0",
"@types/react": "^18.2.59",
"@types/react-dom": "^18.2.19",
"css-loader": "^6.10.0",
"eslint-config-bezier": "workspace:*",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^5.6.0",
"react-dev-utils": "^12.0.1",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"tsconfig": "workspace:*",
"url-loader": "^4.1.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@channel.io/bezier-icons": "0.38.0",
"@channel.io/bezier-react": "2.6.2",
"octokit": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.1"
}
}