-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
97 lines (97 loc) · 2.64 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
{
"name": "dobux",
"version": "1.5.1",
"description": "Lightweight responsive state management solution",
"main": "dist/dobux.cjs.js",
"module": "dist/dobux.esm.js",
"types": "dist/dobux.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "node scripts/dev.js",
"build": "node scripts/build.js",
"docs:dev": "dumi dev docs",
"docs:build": "dumi build docs",
"lint": "eslint 'src/**/*.@(js|ts|jsx|tsx)' --fix",
"format": "prettier --write 'src/**/*.@(js|ts|jsx|tsx)'",
"test": "npm run test:once -- --watch",
"test:once": "jest --runInBand --colors --forceExit",
"coverage": "codecov",
"prepare": "husky install",
"release": "node scripts/release.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kcfe/dobux"
},
"keywords": [
"dobux",
"react",
"hooks",
"typescript",
"state-management",
"immutable"
],
"lint-staged": {
"{src,__tests__}/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2",
"immer": "^6.0.9"
},
"peerDependencies": {
"react": "^16.8.3 || ^17",
"react-dom": "^16.8.3 || ^17"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@eljs/release": "0.7.3",
"@microsoft/api-extractor": "^7.19.4",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/fs-extra": "^9.0.3",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^16.14.8",
"@types/react-dom": "^16.9.13",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"chalk": "^4.1.2",
"codecov": "^3.8.3",
"dumi": "^1.1.43",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"execa": "^5.1.1",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"minimist": "^1.2.5",
"prettier": "^2.5.1",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rollup": "^2.69.0",
"rollup-plugin-typescript2": "^0.32.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.6.0",
"tslib": "^2.3.1",
"typescript": "4.5.5"
},
"author": "Ender Lee",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT"
}