-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.81 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
{
"name": "minreact",
"version": "1.0.0",
"description": "",
"main": "index.js",
"module": "./src/index.js",
"types": "./type/index.d.ts",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c rollup.config.js && tsc --emitDeclarationOnly -p tsconfig.json",
"lint": "eslint src",
"format": "prettier --ignore-path ./.prettierignore --write .",
"preinstall": "husky install"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.0.0",
"@commitlint/config-conventional": "^17.6.3",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"commitlint": "^17.6.3",
"eslint": "^8.40.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"pretty-quick": "^3.1.3",
"rollup": "^2.79.1",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^7.1.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.12.5",
"@babel/runtime-corejs3": "^7.12.5",
"core-js": "^3.7.0",
"react": "^18.2.0",
"rollup-plugin-livereload": "^2.0.5"
}
}