-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 3.21 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@mediamonks/react-kit",
"version": "2.0.4",
"description": "A collection of React hooks, components, utilities that we use at Media.Monks",
"keywords": [
"react",
"components",
"typescript",
"hooks"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mediamonks/react-kit.git"
},
"author": "frontend.monks",
"license": "MIT",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./gsap": "./dist/gsap.js",
"./nextjs": "./dist/nextjs.js"
},
"type": "module",
"files": [
"dist/**/*",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm-run-all -s clean build:*",
"build:ts": "tsc -p ./tsconfig.build.json",
"clean": "npm-run-all clean:*",
"clean:test": "shx rm -rf coverage .nyc_output",
"clean:npm": "shx rm -rf dist",
"lint": "npm-run-all lint:*",
"lint:eslint": "eslint --ext .js,.jsx,.cjs,.ts,.tsx ./src",
"lint:prettier": "prettier . --check",
"test": "npm-run-all -s test:*",
"test:vitest": "vitest ./src/",
"test:storybook": "concurrently -k -s first \"npm run storybook:build --quiet && npx http-server ./.docs/react-kit --port 6006 --silent\" \"wait-on tcp:6006 && npm run storybook:test\"",
"check-types": "tsc --project tsconfig.json --noEmit --noUnusedLocals",
"storybook:dev": "storybook dev -p 6006",
"storybook:build": "storybook build -o ./.docs/react-kit",
"storybook:test": "test-storybook --url http://localhost:6006",
"storybook:deploy": "./deploy-docs.sh",
"prepublishOnly": "npm run build",
"plop": "plop",
"prepare": "husky install"
},
"prettier": "@mediamonks/prettier-config",
"devDependencies": {
"@mediamonks/eslint-config": "^2.5.0",
"@mediamonks/eslint-config-react": "^2.6.0",
"@mediamonks/eslint-config-typescript": "^1.5.1",
"@mediamonks/eslint-config-typescript-react": "^1.4.1",
"@mediamonks/prettier-config": "^1.0.1",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/blocks": "^7.6.17",
"@storybook/cli": "^7.6.17",
"@storybook/jest": "^0.2.3",
"@storybook/manager-api": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-vite": "^7.6.17",
"@storybook/test-runner": "^0.16.0",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.6.17",
"@storybook/types": "^7.6.17",
"@testing-library/react": "^14.0.0",
"@types/lodash-es": "^4.17.11",
"@types/react": "^18.0.25",
"@vitejs/plugin-react": "^4.0.0",
"concurrently": "^8.2.2",
"eslint": "^8.28.0",
"gsap": "npm:@gsap/[email protected]",
"http-server": "^14.1.1",
"husky": "^8.0.0",
"jsdom": "^22.0.0",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"plop": "^4.0.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shx": "^0.3.4",
"storybook": "^7.5.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vitest": "^0.34.3",
"wait-on": "^7.1.0"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"peerDependencies": {
"react": ">= 17"
}
}