-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 loc) · 1.46 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
{
"name": "yivi-frontend-packages",
"license": "MIT",
"browserslist": [
"> 0.25%, not dead"
],
"scripts": {
"lint-js": "eslint . --ext .js",
"lint-css": "stylelint yivi-css/src/",
"lint": "npm run lint-js && npm run lint-css",
"install": "set -eux; for pkg in `find . -maxdepth 2 -type d -name 'yivi-*'`; do (cd $pkg && npm install); done",
"link": "npm run link-yivi-popup && npm run link-yivi-frontend",
"link-yivi-popup": "cd ./plugins/yivi-popup && npm install ../yivi-web --no-save",
"link-yivi-frontend": "cd ./yivi-frontend && npm install ../yivi-core ../yivi-css ../plugins/yivi-client ../plugins/yivi-web ../plugins/yivi-popup --no-save",
"build": "set -eux; for pkg in ./yivi-css ./yivi-frontend; do (cd $pkg; npm run release); done"
},
"devDependencies": {
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"prettier": "3.0.3",
"prettier-config-standard": "^7.0.0",
"stylelint": "^15.10.3",
"stylelint-config-recommended-scss": "^13.0.0",
"stylelint-prettier": "^4.0.2",
"stylelint-scss": "^5.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/privacybydesign/yivi-frontend-packages"
}
}