-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.05 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"docs:api": "lerna run --scope \"@coreui/bootstrap-react-docs\" api --stream",
"docs:dev": "lerna run --scope \"@coreui/bootstrap-react-docs\" develop --stream",
"docs:build": "lerna run --scope \"@coreui/bootstrap-react-docs\" build --stream",
"docs:clean": "lerna run --scope \"@coreui/bootstrap-react-docs\" clean",
"lib:build": "lerna run --scope \"@coreui/bootstrap-react\" build --stream",
"lint": "eslint \"packages/**/src/**/*.{js,ts,tsx}\"",
"test": "jest --coverage",
"test:update": "jest --coverage --updateSnapshot"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.4.5",
"jest-canvas-mock": "^2.3.1",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2"
}
}