This repository has been archived by the owner on Feb 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
98 lines (98 loc) · 2.85 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
{
"name": "waffles",
"homepage": "https://github.com/datacamp/design-system",
"description": "The DataCamp design system.",
"keywords": [
"design system",
"style guide",
"catalog",
"react",
"javascript",
"react",
"sass",
"webpack",
"components"
],
"version": "0.1.0",
"license": "MIT",
"private": true,
"author": "DataCamp",
"contributors": [
"Dan Denney <[email protected]>",
"Jordan Wade <[email protected]>",
"Aaron Bates <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/datacamp/design-system.git"
},
"main": "catalog/index.js",
"scripts": {
"bootstrap": "lerna clean --yes && lerna bootstrap && lerna run prepare --stream",
"lint": "svglint \"./packages/{react-components,other}/**/!(sprite)*.svg\" && eslint --ext js,jsx,ts,tsx --ignore-path .gitignore .",
"lint:fix": "yarn lint --fix",
"test": "lerna run test --stream",
"percy": "lerna run percy",
"type-check": "lerna run type-check",
"build": "lerna run build",
"publish-packages": "lerna publish --conventional-commits --create-release github",
"beta-publish-packages": "lerna publish --conventional-commits --create-release github --conventional-prerelease --preid beta --pre-dist-tag beta --include-merged-tags --allow-branch beta",
"commitlint:ci": "commitlint --config commitlint.config.js --from \"origin/master\"",
"stryker": "lerna run stryker --concurrency=1 --stream"
},
"dependencies": {},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@datacamp/eslint-config": "^4.1.0",
"@datacamp/prettier-config": "^2.1.0",
"@emotion/eslint-plugin": "^11.0.0",
"@types/jest": "26.0.20",
"@types/react-dom": "16.9.9",
"commitlint": "^12.0.1",
"eslint": "^7.12.1",
"eslint-plugin-cypress": "^2.11.2",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"prettier": "^2.1.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"svglint": "1.0.6",
"typescript": "4.1.3"
},
"resolutions": {
"**/chokidar": "^3.4.3"
},
"browserslist": ["last 2 versions", "Firefox ESR", "not IE < 11"],
"engines": {
"yarn": "^1.15.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"workspaces": {
"packages": [
"packages/docs/*",
"packages/other/*",
"packages/react-components/*",
"packages/stylesheets/*",
"packages/tools/*"
],
"nohoist": [
"@datacamp/waffles-core/**",
"**/react-live",
"**/react-live/**",
"**/unicode-match-property-ecmascript",
"**/unicode-match-property-value-ecmascript",
"**/css-loader",
"**/css-loader/**",
"**/sass-loader",
"**/sass-loader/**",
"**/jest",
"**/jest/**",
"**/@babel/runtime/**",
"**/cosmiconfig"
]
}
}