-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
90 lines (90 loc) · 2.79 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": "@ya.praktikum/react-developer-burger-ui-components",
"version": "1.14.2",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"private": false,
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/Yandex-Practicum/react-developer-burger-ui-components.git"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "node ./tasks/prettify.js"
}
},
"dependencies": {
"clsx": "^1.1.1",
"plural-ru": "^2.0.2"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-react-display-name": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/plugin-transform-typescript": "^7.6.0",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-jest": "^24.9.0",
"babel-plugin-add-react-displayname": "^0.0.5",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-typescript-to-proptypes": "^1.0.0",
"cross-env": "^7.0.3",
"docz": "^2.3.1",
"dot-json": "^1.2.0",
"eslint": "^7.11.0",
"husky": "^4.2.5",
"npx": "^10.2.2",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"tsc": "^1.20150623.0",
"typescript": "^4.1.2",
"webpack": "4.44.2"
},
"peerDependencies": {
"react": "16.x || 17.x || 18.x",
"react-dom": "16.x || 17.x || 18.x"
},
"scripts": {
"clean:build": "rimraf dist",
"clean:docs": "rimraf docs",
"build": "npm run clean:build && npx tsc && npx babel ./src --out-dir dist --extensions \".ts,.tsx\" --copy-files --ignore typings.d.ts,setupTests.ts && rimraf dist/__docz__ && rimraf dist/tasks",
"docz:dev": "docz dev",
"docz:build": "npm run clean:docs && docz build",
"docz:serve": "docz build && docz serve"
}
}