-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.03 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
{
"name": "@thonlabs/ui",
"description": "Create fast and beautiful user interfaces easily using React",
"version": "0.1.0",
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"*"
],
"license": "MIT",
"scripts": {
"compile": "tsc -p .",
"build": "rm -rf dist && yarn compile && cp -R src/core dist && cp -R src/plugins dist && cp src/plugin.js dist",
"postbuild": "gulp postBuild && cp package.json dist && cp README.md dist",
"package": "rimraf *.tgz && cd dist && yarn pack && cd ../ && mv dist/*.tgz ./",
"lint": "TIMING=1 eslint src/**/*.ts* --fix",
"clean": "rm -rf dist",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack4": "^6.5.16",
"@storybook/manager-webpack4": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.4.0",
"@types/marked": "^4.0.8",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"babel-loader": "^8.2.5",
"eslint": "^7.32.0",
"eslint-config-custom": "*",
"glob": "^8.1.0",
"gulp": "^4.0.2",
"gulp-remove-empty-lines": "^0.1.0",
"gulp-uglify": "^3.0.2",
"jest": "^29.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook-addon-themes": "^6.1.0",
"through2": "^4.0.2",
"ts-jest": "^29.0.5",
"tsconfig": "*",
"typescript": "^4.9.5"
},
"dependencies": {
"autoprefixer": "^10.4.13",
"classnames": "^2.3.2",
"marked": "^4.2.12",
"postcss": "^8.4.21",
"react-hot-toast": "^2.4.0",
"tailwindcss": "^3.2.6"
}
}