-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.51 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.51 KB
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
{
"name": "otus-jsbasic-dz44-complib",
"version": "1.0.0",
"description": "",
"main": "index.js",
"homepage": ".",
"scripts": {
"prepare": "husky",
"start": "npm run storybook",
"test": "jest",
"test:watch": "npx jest ./src --coverage --watch",
"build": "npm run tsc & npm run build-storybook",
"tsc": "tsc --noEmit",
"lint": "eslint --fix",
"format": "prettier --write",
"style": "stylelint --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"visual-tests": "loki test laptop --verboseRenderer",
"visual-tests-ci": "storybook build && loki --requireReference --reactUri file:./storybook-static"
},
"keywords": [],
"author": "",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@chromatic-com/storybook": "^1.2.25",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@commitlint/types": "^19.0.3",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-webpack5": "^7.6.17",
"@storybook/test": "^7.6.17",
"@stylistic/eslint-plugin-ts": "^1.6.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-css-modules": "^2.1.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-prepush": "^2.2.1",
"lint-staged": "^15.2.2",
"loki": "^0.34.0",
"prettier": "^3.2.5",
"storybook": "^7.6.17",
"stylelint": "^16.2.1",
"stylelint-config-recommended": "^14.0.0",
"stylelint-css-modules": "^1.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}