-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
121 lines (121 loc) · 3.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
113
114
115
116
117
118
119
120
121
{
"name": "@stencila/designa",
"version": "2.0.0",
"private": true,
"description": "Stencila's visual design resources and style guide",
"main": "index.js",
"repository": "https://github.com/stencila/style",
"author": "https://github.com/stencila/style/graphs/contributors",
"license": "Apache-2.0",
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11"
],
"engines": {
"node": ">=12.17.0",
"npm": ">=6.10.0"
},
"scripts": {
"prepare": "lerna bootstrap && husky install",
"build": "lerna run build --stream",
"build:brand": "lerna run build --stream --scope '@stencila/brand'",
"build:components": "lerna run build --stream --scope '@stencila/components'",
"build:components:watch": "lerna run build:watch --stream --scope '@stencila/components'",
"build:styles": "lerna run build --stream --scope '@stencila/style*'",
"build:styles:stencila": "lerna run build --stream --scope '@stencila/style-stencila'",
"build:styles:stencila:watch": "lerna run build:watch --stream --scope '@stencila/style-stencila'",
"build:styles:material": "lerna run build --stream --scope '@stencila/style-material'",
"build:styles:material:watch": "lerna run build:watch --stream --scope '@stencila/style-material'",
"storybook": "start-storybook -p 9006 --modern",
"storybook:build": "build-storybook -o docs --modern",
"test": "lerna run test --stream",
"chromatic": "chromatic --storybook-build-dir docs"
},
"devDependencies": {
"@babel/core": "7.17.8",
"@stencila/dev-config": "3.0.4",
"@stencila/eslint-config": "3.0.4",
"@stencila/renovate-config": "0.4.3",
"@storybook/addon-a11y": "6.4.19",
"@storybook/addon-backgrounds": "6.4.19",
"@storybook/addon-controls": "6.4.19",
"@storybook/addon-docs": "6.4.19",
"@storybook/addon-measure": "6.4.19",
"@storybook/addon-outline": "6.4.19",
"@storybook/addon-storysource": "6.4.19",
"@storybook/addon-viewport": "6.4.19",
"@storybook/builder-webpack5": "6.4.19",
"@storybook/manager-webpack5": "6.4.19",
"@storybook/web-components": "6.4.19",
"autoprefixer": "10.4.4",
"babel-loader": "8.2.4",
"chromatic": "6.5.3",
"core-js": "3.21.1",
"cssnano": "5.1.5",
"cssnano-preset-advanced": "5.3.1",
"filewatcher-webpack-plugin": "1.2.0",
"globby": "12.2.0",
"husky": "7.0.4",
"lerna": "4.0.0",
"lit-html": "2.2.1",
"postcss": "8.4.31",
"postcss-cli": "9.1.0",
"postcss-custom-properties": "12.1.5",
"postcss-host": "2.0.1",
"postcss-import": "14.1.0",
"postcss-import-url": "7.0.0",
"postcss-mixins": "9.0.2",
"postcss-modules": "4.3.1",
"postcss-nested": "5.0.6",
"postcss-url": "10.1.3",
"tailwindcss": "3.0.23",
"typescript": "4.6.2",
"write-file-webpack-plugin": "4.5.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-case": [
2,
"always",
"sentence-case"
],
"subject-case": [
2,
"always",
"sentence-case"
]
}
},
"eslintConfig": {
"extends": "@stencila/eslint-config"
},
"prettier": "@stencila/dev-config/prettier-config.json",
"release": {
"extends": "@stencila/semantic-release-config"
},
"renovate": {
"extends": [
"@stencila",
":pinOnlyDevDependencies"
],
"packageRules": [
{
"matchSourceUrlPrefixes": [
"https://github.com/codemirror/"
],
"groupName": "CodeMirror editor packages"
},
{
"matchPackagePatterns": [
"^d3",
"^@types/d3"
],
"groupName": "D3.js packages"
}
]
}
}