forked from quarx-ui/quarx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 4.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
{
"name": "quarx",
"version": "0.0.1",
"description": "Design kit for Sber ecosystem",
"license": "Sber Public License at-nc-sa",
"private": true,
"scripts": {
"build": "lerna exec --parallel 'yarn run build'",
"publish": "yarn run build && lerna version && yarn run publish:prepare && lerna exec 'cd build && yarn publish --non-interactive'",
"publish:prepare": "yarn run publish:prepare:copy && yarn run publish:prepare:packageJson",
"publish:prepare:copy": "lerna exec --parallel 'cp package.json CHANGELOG.md README.md build'",
"publish:prepare:packageJson": "lerna exec --parallel 'node ../../scripts/utils/package/prepare.ts'",
"lint": "tsc --noEmit --emitDeclarationOnly false && eslint 'packages/**'",
"lint:fix": "yarn lint --fix",
"lint:branch": "tsc --noEmit --emitDeclarationOnly false && eslint $(git diff --diff-filter=d --name-only origin..)",
"lint:branch-fix": "yarn lint:branch --fix",
"lint:staged": "tsc --noEmit --emitDeclarationOnly false && eslint $(git diff --diff-filter=d --cached --name-only)",
"lint:staged-fix": "yarn lint:staged --fix",
"prepare": "husky install",
"test:u": "yarn run test:jest:u",
"storybook:set-env": "BABEL_ENV=storybook",
"story": "yarn run storybook",
"storybook": "yarn run storybook:set-env start-storybook -p 6006",
"storybook:build": "yarn run storybook:set-env build-storybook",
"storybook:publish": "yarn run storybook:build && node ./.storybook/publish.js",
"test:jest": "BABEL_ENV=test lerna exec 'yarn jest --passWithNoTests'",
"test:jest:u": "BABEL_ENV=test lerna exec 'yarn jest --passWithNoTests -u'",
"test": "yarn run test:jest",
"test:all": "yarn run test:e2e && yarn run test",
"test:e2e": "cd e2e && yarn run test",
"test:e2e:chrome": "cd e2e && yarn test --project=chromium",
"test:e2e:firefox": "cd e2e && yarn test --project=firefox",
"test:e2e:webkit": "cd e2e && yarn test --project=webkit",
"e2e:init": "cd e2e && yarn run test:init",
"e2e:build": "cd e2e && yarn run e2e:build",
"e2e:serve": "cd e2e && yarn run e2e:serve",
"e2e:run": "cd e2e && yarn run e2e:run",
"figma:icons": "cd ./scripts/figma && yarn && yarn update:icons",
"new": "ts-node scripts/cli/new.ts"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@emotion/react": "^11.7.1",
"@emotion/serialize": "^1.0.2",
"@emotion/styled": "^11.6.0",
"@playwright/test": "^1.19.1",
"@storybook/addon-actions": "^6.2.8",
"@storybook/addon-essentials": "^6.2.8",
"@storybook/addon-links": "^6.2.8",
"@storybook/addons": "^6.4.19",
"@storybook/api": "^6.5.12",
"@storybook/components": "^6.5.12",
"@storybook/react": "^6.2.8",
"@storybook/source-loader": "^6.2.8",
"@storybook/theming": "^6.4.19",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/inquirer": "^8.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"awesome-typescript-loader": "^5.2.1",
"aws-sdk": "^2.913.0",
"axios": "^0.21.4",
"babel-core": "^6.26.3",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.2",
"babel-plugin-css-modules-transform": "^1.6.2",
"babel-plugin-inline-import-data-uri": "^1.0.1",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-module-resolver": "^4.1.0",
"commander": "^9.4.0",
"conventional-changelog-conventionalcommits": "^4.6.1",
"dotenv": "^10.0.0",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"inquirer": "^8.0.0",
"jest": "^27.2.0",
"jest-environment-jsdom": "^27.5.1",
"jest-environment-jsdom-sixteen": "^2.0.0",
"lerna": "^4.0.0",
"mime-types": "^2.1.30",
"react": "16.8.4",
"react-dom": "16.8.4",
"storybook-addon-designs": "^6.0.1",
"terser-webpack-plugin": "^5.1.1",
"ts-node": "^10.2.1",
"ttypescript": "^1.5.12",
"typescript": "^4.2.4",
"typescript-transform-paths": "^2.2.3"
}
}