-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.07 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
{
"name": "harpe",
"version": "0.3.1",
"description": "Common methods for browsers",
"module": "lib/index.esm.js",
"main": "lib/index.js",
"unpkg": "/lib/",
"deliver": "/lib/",
"typings": "lib/index.d.ts",
"scripts": {
"commitlint": "commitlint -e",
"reload": "rimraf node_modules && cnpm install",
"build": "npx rollup -c ./config/rollup.build.js",
"start": "webpack serve --config ./config/webpack.dev.js",
"test": "webpack serve --config ./config/webpack.dev.js",
"restart": "rimraf dist && npm run build && npm start",
"prod": "npm run build && npm run start",
"eslint": "eslint . --ext .ts",
"eslint:fix": "eslint . --ext .ts --fix",
"pub": "npm publish"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"keywords": [
"typescript",
"javascript",
"method",
"browser"
],
"engines": {
"node": ">=16"
},
"bugs": "https://github.com/guanruihua/harpe/issues",
"repository": {
"type": "git",
"url": "git@github.com:guanruihua/harpe.git"
},
"author": "ruihuag",
"license": "MIT",
"dependencies": {
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rollup/plugin-commonjs": "^21.1.0",
"@types/bluebird": "^3.5.37",
"@types/node": "^18.11.2",
"@types/react": "^17.0.15",
"@types/react-custom-scrollbars": "^4.0.8",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"abandonjs": "2.5.5",
"asura-eye": "^0.8.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"commitlint": "^17.2.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"esbuild-loader": "^2.20.0",
"eslint": "^8.25.0",
"eslint-plugin-prettier": "^4.2.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"less": "^4.0.0",
"less-loader": "^8.0.0",
"mini-css-extract-plugin": "^1.6.1",
"node-notifier": "^8.0.2",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"progress-bar-webpack-plugin": "^2.1.0",
"react": "18",
"react-dom": "18",
"react-router-dom": "^6.5.0",
"resolve-url-loader": "^4.0.0",
"rh-ts-methods": "^0.0.2",
"rimraf": "^3.0.2",
"rollup": "^3.17.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^1.1.8",
"ts-toolbelt": "^9.6.0",
"typescript": "^4.8.4",
"typescript-plugin-css-modules": "^3.4.0",
"unit-testing-js": "^0.3.3",
"unit-testing-react": "^0.0.3",
"webpack": "^5.64.2",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
}
}