-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.98 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
{
"repository": "https://github.com/codefreak/react-file-manager",
"private": true,
"workspaces": [
"packages/*"
],
"dependencies": {
"@ant-design/icons": "4.8.3",
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@codefreak/eslint-config": "0.1.3",
"@codefreak/prettier-config": "0.1.2",
"@rollup/plugin-typescript": "8.5.0",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-controls": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/addons": "6.5.16",
"@storybook/react": "6.5.16",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"antd": "4.24.16",
"babel-eslint": "10.1.0",
"babel-loader": "8.4.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"jest": "26.6.3",
"jest-dom": "4.0.0",
"lerna": "3.22.1",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-dnd": "14.0.5",
"react-dnd-html5-backend": "14.1.0",
"rollup": "2.79.2",
"typescript": "4.9.5"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "lerna run build",
"test": "run-s lint",
"tsc-watch": "lerna run --parallel tsc-watch",
"watch": "run-p tsc-watch storybook",
"start": "run-s build watch",
"lint:prettier": "prettier --check \"packages/*/src/**/*\"",
"fix:prettier": "prettier --write \"packages/*/src/**/*\"",
"lint:eslint": "eslint --ext .js,.jsx,.ts,.tsx \"packages/*/src/**/*\"",
"fix:eslint": "eslint --fix --ext .js,.jsx,.ts,.tsx \"packages/*/src/**/*\"",
"fix": "npm-run-all fix:*",
"lint": "npm-run-all lint:*"
}
}