-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.73 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
{
"name": "@alxshelepenok/diesel",
"version": "1.0.1364",
"description": "A state management library for React",
"repository": {
"type": "git",
"url": "https://github.com/alxshelepenok/diesel.git"
},
"license": "MIT",
"author": "Alexander Shelepenok <alxshelepenok@gmail.com>",
"main": "target/diesel.umd.js",
"module": "target/diesel.es5.js",
"typings": "target/types/src/index.d.ts",
"files": [
"target"
],
"scripts": {
"build": "npm run clean && tsc && rollup -c internal/rollup/rollup-config.ts",
"clean": "rimraf target",
"format": "npm run format:ts",
"format:ts": "eslint . --ext .tsx,.ts --fix && prettier --write .",
"lint": "npm run lint:ts",
"lint:commit": "commitlint",
"lint:staged": "lint-staged",
"lint:ts": "eslint . --ext .tsx,.ts && prettier --check .",
"prepare": "husky install",
"semantic-release": "semantic-release",
"start": "rollup -c internal/rollup/config.ts -w",
"test": "jest --runInBand --passWithNoTests --config internal/testing/jest-config.ts"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.tsx?": [
"npm run format:ts"
]
},
"devDependencies": {
"@alxshelepenok/eslint-config": "^1.0.530",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@jest/types": "^29.6.3",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@swc/core": "^1.3.107",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.5",
"@types/react": "^18.3.14",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"conventional-changelog-conventionalcommits": "7.0.2",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.4.14",
"rimraf": "6.0.1",
"rollup": "^2.79.1",
"semantic-release": "23.0.8",
"ts-jest": "^29.2.5",
"ts-node": "10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": "^16.11.0 || ^17.0.0 || ^18.0.0"
},
"publishConfig": {
"access": "public"
}
}