-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.62 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
{
"name": "figma-plugin-react-template",
"version": "1.0.0",
"description": "This plugin template uses Typescript. If you are familiar with Javascript, Typescript will look very familiar. In fact, valid Javascript code is already valid Typescript code.",
"license": "ISC",
"scripts": {
"build": "webpack --mode=production",
"build:watch": "webpack --mode=development --watch",
"prettier:format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,json}' ",
"serve": "webpack-dev-server"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@chakra-ui/react": "^1.6.10",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@nivo/bar": "^0.73.1",
"@nivo/calendar": "^0.74.0",
"@nivo/core": "^0.73.0",
"@nivo/line": "^0.73.0",
"@nivo/pie": "^0.73.0",
"@nivo/radar": "^0.74.0",
"@nivo/scatterplot": "^0.74.0",
"@use-gesture/react": "^10.2.0",
"ahooks": "^2.10.9",
"antd": "^4.16.11",
"classnames": "^2.3.1",
"crypto-random-string": "^4.0.0",
"csv": "^5.5.0",
"framer-motion": "^4",
"i18next": "^21.2.4",
"immer": "^9.0.5",
"jotai": "^1.4.2",
"lodash": "^4.17.21",
"normal-distribution": "^1.1.1",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dom": "^17.0.2",
"react-i18next": "^11.12.0",
"react-icons": "^4.2.0",
"react-rnd": "^10.3.4",
"react-spring": "^9.2.4",
"react-use-gesture": "^9.1.3",
"styled-components": "^5.3.0",
"use-immer": "^0.6.0"
},
"devDependencies": {
"@figma/plugin-typings": "^1.24.0",
"@types/react": "^17.0.11",
"@types/react-color": "^3.0.5",
"@types/react-dom": "^17.0.7",
"autoprefixer": "^10.3.7",
"css-loader": "^5.0.1",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"postcss": "^8.3.9",
"postcss-loader": "^4.2.0",
"prettier": "^2.3.1",
"style-loader": "^2.0.0",
"tailwindcss": "^2.2.17",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2",
"url-loader": "^4.1.1",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.11.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,css,json}": [
"prettier --write",
"git add"
]
}
}