-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.97 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
{
"name": "root",
"private": true,
"license": "MIT",
"workspaces": [
"docs",
"packages/*"
],
"scripts": {
"build": "lerna run build --stream",
"clean": "lerna run clean --stream",
"docs": "concurrently --kill-others 'npm run server' 'npm run watch:docs' 'npm run watch:vb'",
"fix": "npm-run-all fix:styles fix:scripts",
"fix:scripts": "eslint --fix packages",
"fix:styles": "stylelint --fix 'packages/**/*.scss'",
"lint": "npm-run-all lint:styles lint:scripts",
"lint:scripts": "eslint packages",
"lint:styles": "stylelint 'packages/**/*.scss'",
"server": "lerna run server --scope=docs --parallel",
"sink": "npm ci && npm-run-all build lint test:coverage",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"watch": "lerna run watch --scope=\"@vrembem/$npm_config_component\" --parallel",
"watch:docs": "lerna run watch --scope=docs --parallel",
"watch:vb": "lerna run watch --scope=vrembem --parallel"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.5.2",
"babel-jest": "^29.7.0",
"concurrently": "^9.1.0",
"del-cli": "^6.0.0",
"eslint": "^9.15.0",
"eslint-plugin-jest": "^28.9.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.1.9",
"lerna-changelog": "^2.2.0",
"microbundle": "^0.15.1",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"postcss-scss": "^4.0.9",
"sass": "^1.81.0",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4"
},
"jest": {
"collectCoverageFrom": [
"./packages/**/src/**"
],
"testEnvironment": "jsdom",
"transformIgnorePatterns": [
"node_modules/(?!(@popperjs)/)"
]
}
}