-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.34 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
{
"name": "Chakra-UI-Tokens-Studio",
"version": "1.0.0",
"description": "Your Figma Plugin",
"private": true,
"main": "code.js",
"scripts": {
"prepare": "husky install && panda",
"dev": "concurrently 'pnpm:dev:*'",
"dev:css": "panda --watch",
"dev:plugin": "rspack --watch",
"build": "rspack",
"lint": "tsc",
"prettier:format": "prettier --write '**/*.{js,jsx,ts,tsx,css,json}' "
},
"author": "",
"license": "",
"browser": {
"@/panda/recipes": false
},
"dependencies": {
"@ark-ui/react": "^0.2.0",
"@chakra-ui/anatomy": "^2.1.1",
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.6.1",
"@chakra-ui/shared-utils": "^2.0.4",
"@chakra-ui/styled-system": "^2.9.0",
"@chakra-ui/system": "^2.5.7",
"@chakra-ui/theme-tools": "^2.0.16",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@figma-plugin/helpers": "^0.15.2",
"@pandacss/dev": "0.0.0-dev-20230509145753",
"concurrently": "^8.0.1",
"d3-scale": "^4.0.2",
"figma-react": "^1.0.19",
"framer-motion": "^10.12.9",
"install": "^0.13.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^8.3.2",
"react": "^18.2.0",
"react-colorful": "^5.6.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9"
},
"devDependencies": {
"@figma/plugin-typings": "1.64.0",
"@rspack/cli": "^0.1.10",
"@rspack/plugin-html": "^0.1.10",
"@swc/core": "^1.3.57",
"@types/d3-scale": "^4.0.3",
"@types/node": "^20.1.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/webpack": "^5.28.1",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss": "^8.4.23",
"postcss-loader": "^7.3.0",
"prettier": "^2.8.8",
"react-refresh": "^0.14.0",
"style-loader": "^3.3.2",
"svg-inline-loader": "^0.8.2",
"swc-loader": "^0.2.3",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"turbo": "^1.9.3",
"typescript": "^5.0.4",
"url-loader": "^4.1.1",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,css,json}": [
"prettier --write",
"git add"
]
}
}