generated from y1j2x34/rollup-jest-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.85 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
{
"name": "@vgerbot/use-service-react",
"version": "1.0.7",
"description": "",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"distDir": "dist/",
"types": "dist/index.d.ts",
"library": "useService",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"example": "rollup -c ./rollup.config.examples.js",
"prepare": "husky install",
"release": "standard-version",
"commit": "commit",
"lint": " eslint --no-error-on-unmatched-pattern {src,__test__}/**/*.{js,ts,tsx}",
"format": "eslint --no-error-on-unmatched-pattern --fix {src,__test__}/**/*.{js,ts,tsx}",
"build": "cross-env NODE_ENV=production rollup -c ./rollup.config.js",
"gendoc": "typedoc ./src --out dist/docs --name use-service --hideGenerator",
"prepublish": "npm lint && npm run build"
},
"lint-staged": {
"{src,test}/**/*.{js,ts,tsx}": [
"npm run format",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/y1j2x34/use-service.git"
},
"keywords": [],
"author": "{{author}}",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/prompt-cli": "^17.4.4",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-html": "^1.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"codecov": "*",
"cross-env": "^7.0.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "8.0.3",
"jest": "^29.4.3",
"jest-html-reporter": "^3.7.0",
"lint-staged": "13.1.2",
"prettier": "^2.8.4",
"rollup": "^3.17.0",
"rollup-jest": "^3.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"sucrase": "^3.29.0",
"typedoc": "^0.23.25",
"zx": "^4.2.0"
},
"bugs": {
"url": "https://github.com/y1j2x34/use-service/issues"
},
"homepage": "https://github.com/y1j2x34/use-service#readme",
"dependencies": {
"@types/react": "^18.2.8",
"@vgerbot/ioc": "^1.0.0-alpha.1",
"mobx": "^6.9.0",
"mobx-react-lite": "^4.0.5",
"react": "^18.2.0"
},
"peerDependencies": {
"@types/react": "^18.2.8",
"mobx": "^6.9.0",
"mobx-react-lite": "^4.0.5",
"react": "^18.2.0"
}
}