-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
{
"name": "zet",
"version": "0.2.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch",
"create-archive": "npm run build && node build/create-archive.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chrome": "0.0.104",
"@types/classnames": "^2.2.10",
"@types/lodash": "^4.14.150",
"@types/mousetrap": "^1.6.3",
"@types/node": "^13.11.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-redux": "^7.1.7",
"css-loader": "^3.5.2",
"cz-conventional-changelog": "^3.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.1",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"prettier": "^2.0.5",
"ts-loader": "^6.2.2",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^6.1.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"classnames": "^2.2.6",
"fuse.js": "^5.2.2",
"lodash": "^4.17.15",
"mousetrap": "^1.6.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"archiver": "^4.0.1",
"dateformat": "^3.0.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{html, css, js, ts, tsx, json, md}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}