-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.93 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
{
"name": "@styless-ui/react",
"version": "1.0.0",
"description": "Zero Built-in Style UI React Library.",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/styless-ui/react.git"
},
"bugs": {
"url": "https://github.com/styless-ui/react/issues"
},
"homepage": "https://github.com/styless-ui/react#readme",
"author": {
"name": "yuki0410",
"url": "https://twitter.com/yuki0410_"
},
"scripts": {
"dev": "run-p watch server",
"server": "webpack-dev-server",
"build": "npm run build --workspaces",
"watch": "run-p watch:*",
"watch:use-dropdown": "npm run watch --workspace packages/use-dropdown",
"watch:use-modal": "npm run watch --workspace packages/use-modal",
"lint": "run-s lint:prettier lint:eslint",
"lint:prettier": "prettier --check \"packages/**/*.{ts,tsx}\"",
"lint:eslint": "eslint --ext .ts,.tsx packages",
"fix": "run-s fix:prettier fix:eslint",
"fix:prettier": "prettier --write \"packages/**/*.{ts,tsx}\"",
"fix:eslint": "eslint --ext .ts,.tsx --fix packages"
},
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@styless-ui/react-use-doropdown": "file:packages/use-dropdown",
"@styless-ui/react-use-modal": "file:packages/use-modal",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"clsx": "^1.1.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.3.2",
"microbundle": "^0.13.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.0"
}
}