-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.57 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
{
"name": "react-canvas-progress",
"version": "0.3.6",
"description": "Simple progress component for react",
"main": "lib/index.js",
"scripts": {
"test": "NODE_ENV=test jest",
"commit": "git-cz",
"start": "webpack-dev-server --config ./webpack.dev.js",
"prebuild": "rimraf lib",
"build": "webpack --config ./webpack.config.js",
"postbuild": "tsc --emitDeclarationOnly",
"publish": "yarn build && yarn publish",
"predeploy": "rimraf example/dist",
"deploy": "webpack --config ./webpack.prod.js && gh-pages -d example/dist"
},
"author": "Jiahao Li",
"license": "MIT",
"keywords": [
"react",
"canvas",
"progress"
],
"bugs": {
"url": "https://github.com/LiJiahaoCoder/react-canvas-progress/issues"
},
"homepage": "https://github.com/LiJiahaoCoder/react-canvas-progress#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@babel/core": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/jest": "^26.0.9",
"@types/prismjs": "^1.16.1",
"@types/react-dom": "^16.9.8",
"babel-loader": "^8.1.0",
"babel-plugin-prismjs": "^2.0.1",
"bootstrap": "^4.5.3",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.2.1",
"cz-conventional-changelog": "^3.2.0",
"extract-text-webpack-plugin": "^3.0.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.2.2",
"jquery": "^3.5.1",
"lint-staged": "^10.2.11",
"popper.js": "^1.16.1",
"prismjs": "^1.22.0",
"progress-bar-webpack-plugin": "^2.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"sass": "^1.27.0",
"sass-loader": "^10.0.3",
"style-loader": "^1.2.1",
"ts-jest": "^26.1.4",
"tslint": "^6.1.3",
"tslint-loader": "^3.5.4",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}