-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.88 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": "@muban/hooks",
"version": "1.0.0-alpha.4",
"description": "Reusable hooks for Muban components",
"keywords": [
"muban",
"hooks"
],
"repository": "[email protected]:mubanjs/muban.git",
"author": "Arjan van Wijk <[email protected]>",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"types": "./dist/esm/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build": "npm-run-all -s clean build:*",
"build:ts": "tsc -p tsconfig.build.cjs.json",
"build:ts-esm": "tsc -p ./tsconfig.build.esm.json",
"clean": "npm-run-all clean:*",
"clean:test": "shx rm -rf coverage .nyc_output",
"clean:npm": "shx rm -rf lib dist",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"lint:single": "eslint /Volumes/Projects/mm/muban/muban-component/examples/src/components/toggle-expand/ToggleExpand.ts",
"test": "jest ./src/",
"check-types": "tsc --project tsconfig.json --noEmit --noUnusedLocals",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook -o ./.docs/dist",
"storybook:deploy": "./deploy-docs.sh",
"prepublishOnly": "npm run build",
"plop": "plop"
},
"peerDependencies": {
"@muban/muban": "^1.0.0-alpha.34"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime-corejs3": "^7.12.5",
"@muban/eslint-config": "^1.0.0-alpha.4",
"@muban/muban": "^1.0.0-alpha.34",
"@muban/storybook": "^7.0.0-alpha.19",
"@muban/template": "^1.0.0-alpha.1",
"@muban/test-mock": "npm:@muban/muban@^1.0.0-alpha.28",
"@muban/test-utils": "^1.0.0-alpha.2",
"@muban/testing-library": "^1.0.0-alpha.3",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/theming": "^6.4.9",
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^26.0.15",
"babel-jest": "^26.6.3",
"jest": "^26.3.0",
"nanoid": "^3.1.30",
"npm-run-all": "^4.1.5",
"plop": "^3.0.6",
"prettier": "^2.0.5",
"shx": "^0.3.3",
"ts-jest": "^26.2.0",
"typescript": "^4.5.4"
},
"engines": {
"npm": ">= 7.0.0"
}
}