-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
122 lines (122 loc) · 4.17 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@melfore/konva-timeline",
"version": "1.39.1",
"description": "Melfore ReactJS Timeline library made with Konva",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run pre:build && tsc",
"build:test": "npm run pre:test && tsc",
"build:storybook": "storybook build -o docs --docs --quiet",
"clean:code": "eslint ./ --ext .js,.jsx,.ts,.tsx --fix && prettier ./ --write",
"clean:install": "rimraf dist && rimraf coverage && rimraf node_modules && npm i",
"commit": "git-cz",
"pre:build": "copyfiles -a -f ./.typescript/build/tsconfig.json ./",
"pre:commit": "npm run clean:code",
"pre:push": "npm run test:ci && npm run build:test",
"pre:test": "copyfiles -a -f ./.typescript/test/tsconfig.json ./",
"prepare": "husky",
"start": "npm run pre:test && storybook dev -p 6006",
"test": "npm run pre:test && jest --watch",
"test:ci": "npm run pre:test && jest --ci",
"test:sb": "test-storybook --coverage --coverageDirectory coverage/storybook --ci --verbose",
"test:sb:coverage": "npx nyc report --reporter=lcov -t coverage/storybook --report-dir coverage/storybook",
"semantic-release": "semantic-release",
"update:packages": "npx npm-check-updates --interactive --upgrade --doctor --doctorTest 'npm run pre:push'"
},
"repository": {
"type": "git",
"url": "https://github.com/melfore/konva-timeline.git"
},
"author": "@melfore",
"license": "MIT",
"bugs": {
"url": "https://github.com/melfore/konva-timeline/issues"
},
"homepage": "https://github.com/melfore/konva-timeline#readme",
"peerDependencies": {
"konva": ">= 9.2.0 < 10",
"luxon": ">= 3.3.0 < 4",
"react": ">= 18.2.0 < 19",
"react-dom": ">= 18.2.0 < 19",
"react-konva": ">= 18.2.9 < 19",
"react-konva-utils": ">= 1.0.5 < 2"
},
"devDependencies": {
"@babel/plugin-transform-private-property-in-object": "^7.24.7",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@storybook/addon-coverage": "^1.0.4",
"@storybook/addon-essentials": "^8.3.4",
"@storybook/addon-interactions": "^8.3.4",
"@storybook/addon-links": "^8.3.4",
"@storybook/addon-mdx-gfm": "^8.3.4",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/blocks": "^8.3.4",
"@storybook/react": "^8.3.4",
"@storybook/react-webpack5": "^8.3.4",
"@storybook/test": "^8.3.4",
"@storybook/test-runner": "^0.19.1",
"@types/jest": "^29.5.13",
"@types/luxon": "^3.4.2",
"@types/node": "^20.14.5",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"commitizen": "^4.3.1",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^0.9.0",
"git-cz": "^4.9.0",
"husky": "^9.1.6",
"konva": "^9.3.15",
"luxon": "^3.5.0",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-konva": "^18.2.10",
"react-konva-utils": "^1.0.6",
"rimraf": "^6.0.1",
"semantic-release": "^24.1.2",
"storybook": "^8.3.4",
"typescript": "^5.6.2"
},
"browserslist": {
"production": [
">= 0.5%",
"last 2 versions",
"not dead"
],
"development": [
"last 1 chrome version",
"last 1 edge version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}