-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.37 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.37 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
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
{
"name": "@react-to-styled/root",
"version": "0.0.1",
"private": true,
"description": "React-to is a set of open source components",
"keywords": [
"react",
"styled-components",
"library",
"components",
"documentation",
"frontend",
"react",
"reactjs",
"reuseable",
"templated",
"tool",
"ui"
],
"homepage": "https://react-to.github.io/react-to-styled/",
"repository": {
"type": "git",
"url": "https://github.com/react-to/react-to-styled.git"
},
"license": "MIT",
"author": "Aleksa Toljic <[email protected]>",
"workspaces": [
"packages/*",
"packages"
],
"scripts": {
"prepare": "husky install",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext .ts,.tsx,.mdx --cache --color packages/ stories/ && stylelint --cache \"packages/**/*.tsx\"",
"format": "prettier --write \"packages/**/*.tsx\" \"stories/*.mdx\"",
"storybook": "start-storybook -p 6006",
"predeploy": "yarn build-storybook",
"deploy-storybook": "gh-pages -d storybook-static -b gh-pages-new",
"build-storybook": "build-storybook --quiet -s ./packages/essentials/fonts"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@mdx-js/loader": "^1.6.22",
"@storybook/addon-actions": "^6.4.14",
"@storybook/addon-controls": "^6.4.14",
"@storybook/addon-docs": "^6.4.14",
"@storybook/addon-essentials": "^6.4.15",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.4.14",
"@storybook/addon-measure": "^6.4.14",
"@storybook/addon-storyshots": "^6.4.14",
"@storybook/addon-storysource": "^6.4.15",
"@storybook/addon-viewport": "^6.4.14",
"@storybook/addons": "^6.4.14",
"@storybook/api": "^6.4.14",
"@storybook/components": "^6.4.14",
"@storybook/core-events": "^6.4.14",
"@storybook/react": "^6.4.14",
"@storybook/theming": "^6.4.14",
"@types/mdx": "^2.0.1",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.21",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-custom-alias": "^1.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-mdx": "^1.16.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-fetch-mock": "^3.0.3",
"jest-styled-components": "^7.0.8",
"lerna": "^4.0.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.35.1",
"sass-loader": "^12.0.0",
"storybook-addon-outline": "^1.4.2",
"styled-components": "^5.3.3",
"stylelint": "^14.2.0",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"webpack": "^5.67.0"
}
}