forked from carbon-design-system/carbon-for-ibm-dotcom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.25 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
{
"name": "carbon-for-ibm-dotcom",
"private": true,
"version": "0.0.0",
"repository": "git@github.com:carbon-design-system/carbon-for-ibm-dotcom.git",
"license": "Apache-2.0",
"engines": {
"node": "12 || 14"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "lerna run build --stream --prefix --npm-client yarn",
"ci-check": "npm run format:diff && yarn lint:license && yarn lint && yarn lint:styles",
"clean": "lerna run clean && lerna clean --yes && rimraf node_modules",
"doctoc": "doctoc --title '## Table of Contents' docs",
"format": "prettier --write '**/*.{js,md,scss}'",
"format:diff": "prettier --list-different '**/*.{js,md,scss}'",
"lint": "eslint packages",
"lint:license": "gulp lint:license",
"lint:license:staged": "tasks/check-license.js -w",
"lint:scripts:staged": "eslint",
"lint:styles": "stylelint '**/*.{css,scss}' --config ./packages/stylelint-config-ibmdotcom",
"reset": "yarn cache clean && yarn clean && yarn install && yarn build",
"test": "yarn test:unit && yarn test:a11y && yarn test:integration:build",
"test:a11y": "yarn lerna run --stream --prefix test:a11y",
"test:unit": "cross-env BABEL_ENV=test jest",
"test:integration:build": "yarn lerna run --stream --prefix --scope=@carbon/ibmdotcom-react test:integration:build"
},
"devDependencies": {
"@actions/core": "^1.2.0",
"@actions/exec": "^1.0.0",
"@actions/tool-cache": "^1.5.0",
"@babel/core": "^7.9.0",
"@babel/helper-annotate-as-pure": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.0",
"@babel/plugin-proposal-optional-chaining": "^7.8.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"async-done": "^1.3.0",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"browserslist-config-carbon": "^10.3.0",
"chalk": "^4.1.0",
"commander": "^4.1.0",
"cross-env": "^5.2.0",
"doctoc": "^1.4.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jsdoc": "^24.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"gitignore-to-glob": "^0.3.0",
"globby": "^10.0.0",
"gulp": "^4.0.0",
"husky": "^4.2.0",
"inquirer": "^7.2.0",
"jest": "25.5.4",
"jest-circus": "25.5.4",
"jest-junit": "^6.4.0",
"lerna": "^3.20.2",
"lint-staged": "^10.2.0",
"node-fetch": "^2.6.0",
"prettier": "^1.17.0",
"react": "16.14.0",
"rimraf": "^2.6.3",
"sass": "^1.19.0",
"stylelint": "^10.1.0",
"stylelint-config-prettier": "^5.2.0",
"stylelint-prettier": "^1.1.1",
"stylelint-scss": "^3.8.0",
"through2": "^3.0.0"
},
"dependencies": {
"@babel/runtime": "^7.5.1"
},
"resolutions": {
"kind-of": ">=6.0.3",
"lit-html": "^1.4.0",
"minimist": ">=1.2.2",
"node-notifier": ">=8.0.1"
}
}