-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.62 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.62 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
107
108
109
110
111
112
{
"name": "bitstyles",
"version": "6.2.0",
"description": "The Bitcrowd CSS library",
"main": "build/bitstyles.css",
"scripts": {
"build": "sass scss/bitstyles.scss build/bitstyles.css --style=compressed --no-source-map",
"postbuild": "postcss build/bitstyles.css --replace",
"lint:scss": "stylelint --ignore-path .gitignore 'scss/**/*.scss' --customSyntax postcss-scss && prettier --ignore-path .gitignore --check './**/*.scss'",
"lint:js": "eslint --ignore-path .gitignore --ext js,jsx .",
"lint:docs": "prettier --ignore-path .gitignore --check './**/*.{md,mdx}'",
"lint": "yarn lint:scss && yarn lint:js && yarn lint:docs",
"format:scss": "stylelint --ignore-path .gitignore 'scss/**/*.scss' --customSyntax postcss-scss --fix && prettier --ignore-path .gitignore --write './**/*.scss'",
"format:js": "prettier --ignore-path .gitignore --write './**/*.{js,jsx,json}'",
"format:docs": "prettier --ignore-path .gitignore --write './**/*.{md,mdx}'",
"format": "yarn format:js && yarn format:scss && yarn format:docs",
"test": "script/test",
"checks": "yarn lint && yarn css:stats && yarn test",
"watch": "yarn build && yarn build --watch",
"clean": "rimraf build/*",
"storybook": "start-storybook -p 6006",
"precss:stats": "yarn build",
"css:stats": "analyze-css --file build/bitstyles.css --pretty > test/css-stats.json",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitcrowd/bitstyles.git"
},
"keywords": [
"css",
"sass"
],
"author": {
"name": "Bitcrowd GmbH.",
"url": "https://bitcrowd.net",
"email": "info@bitcrowd.net"
},
"contributors": [
{
"name": "Darren Cadwallader",
"email": "darren@bitcrowd.net",
"url": "https://github.com/planktonic"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/bitcrowd/bitstyles/issues"
},
"homepage": "https://bitcrowd.github.io/bitstyles",
"devDependencies": {
"@babel/core": "^7.18.10",
"@storybook/addon-a11y": "^6.5.9",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/html": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"a11y-dialog": "^7.1.0",
"alpinejs": "^2.8.2",
"analyze-css": "^2.1.50",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"cssnano": "^5.1.13",
"eslint": "^8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.4",
"postcss": "^8.4.16",
"postcss-cli": "^9.1.0",
"postcss-loader": "^7.0.1",
"postcss-scss": "^4.0.4",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rimraf": "^3.0.0",
"sass": "^1.61.0",
"sass-loader": "^13.2.2",
"storybook-addon-pseudo-states": "^1.15.5",
"storybook-zeplin": "^1.7.3",
"style-loader": "^3.3.1",
"stylelint": "^16.1.0",
"stylelint-config-bitcrowd": "^6.0.0",
"typescript": "^4.7.4",
"webpack": "^5.74.0"
},
"files": [
"scss",
"build",
"assets"
],
"browserslist": [
"defaults"
],
"resolutions": {
"**/trim": "^1.0.0"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"dependencies": {}
}