-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.86 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
{
"name": "designtokens.org",
"version": "1.0.0",
"description": "Source for the designtokens.org website and its design tokens",
"main": "index.js",
"repository": "https://github.com/design-tokens/designtokens.org.git",
"author": "Design Token",
"license": "SEE LICENSE.MD",
"private": true,
"engines": {
"yarn": "1.18.0"
},
"scripts": {
"lint": "npm-run-all lint:*",
"lint:js": "eslint website/ --ext .js,.jsx,.ts,.tsx --format codeframe",
"lint:css": "stylelint **/*.scss",
"develop": "yarn workspace website run develop",
"storybook": "yarn workspace website storybook",
"start": "yarn workspace website run start",
"build": "lerna run build",
"build-storybook": "yarn workspace website run build-storybook",
"test": "lerna run test"
},
"devDependencies": {
"core-js": "3",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-monorepo": "^0.3.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.2",
"eslint-plugin-react-hooks": "^4.0.4",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^9.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.18.0"
},
"stylelint": {
"plugins": [
"stylelint-scss"
],
"extends": [
"stylelint-config-standard",
"stylelint-config-prettier"
],
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"global",
"local"
]
}
]
}
},
"workspaces": [
"packages/*",
"website"
]
}