-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.35 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
{
"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": {
"dev": "concurrently \"npm run storybook\" \"npm run build:watch\"",
"build": "lerna run build",
"build:styles": "lerna run build --scope '@stencila/style*'",
"build:components": "lerna run build --scope '@stencila/components'",
"build:watch": "lerna run build:watch --stream --parallel",
"bootstrap": "lerna bootstrap --force-local",
"storybook": "start-storybook -p 9006 -s ./packages/brand/dist,./packages/style-material/dist,./packages/style-stencila/dist,./packages/components/dist",
"storybook:build": "build-storybook -o docs -s ./packages/brand/dist,./packages/style-material/dist,./packages/style-stencila/dist,./packages/components/dist",
"test": "lerna run test",
"chromatic": "chromatic --storybook-build-dir docs"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@stencila/dev-config": "1.4.98",
"@stencila/renovate-config": "0.3.0",
"@storybook/addon-a11y": "6.1.1",
"@storybook/addon-backgrounds": "6.1.1",
"@storybook/addon-controls": "6.1.1",
"@storybook/addon-cssresources": "6.1.1",
"@storybook/addon-docs": "6.1.1",
"@storybook/addon-knobs": "6.1.1",
"@storybook/addon-options": "5.3.21",
"@storybook/addon-storysource": "6.1.1",
"@storybook/addon-viewport": "6.1.1",
"@storybook/web-components": "6.1.1",
"autoprefixer": "9.8.6",
"babel-loader": "8.2.1",
"chromatic": "5.4.0",
"concurrently": "5.3.0",
"core-js": "3.7.0",
"eslint": "7.13.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.5",
"filewatcher-webpack-plugin": "1.2.0",
"globby": "11.0.1",
"lerna": "3.22.1",
"lit-html": "1.3.0",
"parcel-bundler": "1.12.4",
"postcss-cli": "7.1.2",
"postcss-custom-properties": "9.2.0",
"postcss-host": "git+https://github.com/vitkarpov/postcss-host.git",
"postcss-import": "12.0.1",
"postcss-import-url": "5.1.0",
"postcss-mixins": "6.2.3",
"postcss-modules": "3.2.2",
"postcss-nested": "4.2.3",
"postcss-parcel-import": "0.0.2",
"postcss-url": "8.0.0",
"storybook-addon-root-attribute": "1.0.0",
"tailwindcss": "1.9.6",
"typescript": "4.0.5",
"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"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": "@stencila/dev-config/prettier-config.json",
"release": {
"extends": "@stencila/semantic-release-config"
},
"renovate": {
"extends": [
"@stencila",
":pinOnlyDevDependencies"
]
},
"dependencies": {}
}