-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.88 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
{
"name": "root",
"private": true,
"devDependencies": {
"@city/eslint-config": "^1.10.3-alpha.1",
"@city/prettier-config": "^1.10.3-alpha.1",
"@city/stylelint-config-sass": "^1.10.3-alpha.1",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@rollup/plugin-url": "^6.0.0",
"@storybook/addon-actions": "^6.2.1",
"@storybook/addon-controls": "^6.2.1",
"@storybook/addon-docs": "^6.4.14",
"@storybook/addon-knobs": "^6.2.1",
"@storybook/addon-links": "^6.2.1",
"@storybook/addon-storysource": "^6.2.1",
"@storybook/addon-toolbars": "^6.2.1",
"@storybook/addons": "^6.2.1",
"@storybook/react": "^6.4.14",
"@svgr/rollup": "^5.5.0",
"@svgr/webpack": "^5.5.0",
"@types/inquirer": "^8.2.0",
"@types/lodash.debounce": "^4.0.6",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"camelcase": "^6.3.0",
"concurrently": "^6.2.0",
"css-loader": "^5.2.7",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"fs-extra": "^10.0.0",
"lerna": "^4.0.0",
"postcss": "^8.4.6",
"postcss-import": "^14.0.2",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.53.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-smart-asset": "^2.1.2",
"sass": "^1.39.0",
"sass-loader": "^10.2.0",
"storybook": "^6.2.1",
"style-loader": "^2.0.0",
"stylelint": "^14.5.0",
"typescript": "^4.5.5",
"url-loader": "^4.1.1"
},
"dependencies": {},
"scripts": {
"init": "npx lerna bootstrap --hoist --strict",
"build": "npx lerna run build --stream",
"dev:desktop": "npx lerna run storybook --scope @city/ui-kit-core --scope @city/ui-kit --parallel --stream",
"dev:mobile": "npx lerna run storybook --scope @city/ui-kit-core --scope @city/ui-kit-mobile --parallel --stream",
"build:common": "npx lerna run build --scope @city/ui-kit-core",
"build:desktop": "npm run build:common && npx lerna run build --scope @city/ui-kit",
"build:mobile": "npm run build:common && npx lerna run build --scope @city/ui-kit-mobile",
"lint": "npx lerna run lint --parallel --no-bail",
"lint:fix": "npx lerna run lint:fix --parallel --no-bail",
"stylelint": "npx lerna run stylelint --parallel --no-bail",
"stylelint:fix": "npx lerna run stylelint:fix --parallel --no-bail",
"tsc": "npx lerna run tsc --parallel --no-bail",
"lintAll": "npx lerna run lintAll --no-bail --parallel"
}
}