forked from Tinkoff/jira-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.67 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "jira-helper",
"version": "2.16.0",
"description": "jira-helper: Elements for vizualizations, tetris-planing with sprints, button template, swimline-viz",
"repository": "https://github.com/Tinkoff/jira-helper.git",
"license": "ISC",
"contributors": [{
"name": "Pavel Akhmetchanov",
"url": "https://github.com/pavelpower",
"email:": "[email protected]"
},
{
"name": "Nataliya Bobrovskaya",
"url": "https://github.com/bobrovskayaa",
"email:": "[email protected]"
},
{
"name": "Elina Denisova",
"url": "https://github.com/ElinRin",
"email:": "[email protected]"
},
{
"name": "Danil Vakhrushev",
"url": "https://github.com/davakh",
"email:": "[email protected]"
},
{
"name": "Alexey Sokolov",
"url": "https://github.com/Polvista",
"email:": "[email protected]"
},
{
"name": "Krotov Artem",
"url": "https://github.com/timmson"
},
{
"name": "Dmitry",
"url": "https://github.com/ddrozdov",
"email:": "[email protected]"
},
{
"name": "Max",
"url": "https://github.com/Maksimall89",
"email:": "[email protected]"
},
{
"name": "Vsevolod",
"url": "https://github.com/vsevolodk",
"email:": ""
},
{
"name": "Nikolay Kutnyashenko",
"url": "https://github.com/Kvalafalm",
"email:": ""
}
],
"scripts": {
"bootstrap": "npm i --no-save",
"test": "npx jest",
"coverage": "npx jest --collectCoverage",
"build": "cross-env NODE_ENV=production webpack -p --config webpack/webpack.config.prod.js",
"prod": "npm run build && zip -r dist.zip ./dist",
"clear": "rm -rf dist",
"dev": "cross-env NODE_ENV=development webpack -d --config webpack/webpack.config.dev.js",
"lint": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"prepare-commit-msg": "bash ./tools/prepare-commit-message.sh ${HUSKY_GIT_PARAMS}"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint src --fix",
"prettier --write"
]
},
"dependencies": {
"@tinkoff/request-core": "^0.8.8",
"@tinkoff/request-plugin-cache-deduplicate": "^0.8.8",
"@tinkoff/request-plugin-cache-memory": "^0.8.13",
"@tinkoff/request-plugin-protocol-http": "^0.10.17",
"@tinkoff/request-plugin-transform-url": "^0.8.7",
"@tinkoff/utils": "^2.1.3",
"core-js": "^3.8.3",
"cross-env": "^5.2.0",
"gsap": "^3.6.0",
"simple-color-picker": "^1.0.4"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.2",
"css-loader": "^3.6.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.24.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "3.0.4",
"husky": "^4.3.8",
"jest": "26.6.3",
"jest-each": "26.6.2",
"lint-staged": "^10.5.3",
"prettier": "^1.19.1",
"raw-loader": "0.5.1",
"style-loader": "0.20.3",
"terser-webpack-plugin": "^2.3.8",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2",
"webpackbar": "^4.0.0",
"ws": "^7.4.6"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=5.0.0"
}
}