-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.99 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
{
"name": "@opengemeenten/iconset",
"version": "0.0.0-development",
"description": "",
"repository": {
"type": "git+ssh",
"url": "git@github.com:frameless/iconset-npm.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"workspaces": [
"packages/iconset-svg",
"packages/iconset-web-component",
"packages/iconset-react"
],
"scripts": {
"build": "npm run --workspaces build",
"test": "npm run test --workspaces --if-present",
"clean": "npm run --workspaces clean",
"lint": "npm-run-all --continue-on-error lint:**",
"lint:css": "stylelint '**/*.{css,scss}'",
"lint:check": "eslint --ext '.js,.json,.jsx,.mdx,.ts,.tsx,.vue' --report-unused-disable-directives .",
"lint:package-lock": "npm ls",
"lint:prettier": "prettier --check .",
"lint-fix": "npm-run-all --continue-on-error lint-fix:** prettier",
"lint-fix:css": "stylelint --fix '**/*.{css,scss}'",
"lint-fix:js": "eslint --ext '.js,.json,.jsx,.mdx,.ts,.tsx,.vue' --fix --report-unused-disable-directives .",
"prettier": "prettier --write .",
"prepare": "husky install",
"release": "multi-semantic-release"
},
"author": "",
"license": "CC-BY-NC-ND-4.0",
"devDependencies": {
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@types/node": "17.0.45",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-react": "7.30.0",
"husky": "8.0.1",
"lint-staged": "13.0.2",
"lodash": "4.17.21",
"multi-semantic-release": "2.13.0",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"stylelint": "14.9.1",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard-scss": "4.0.0",
"stylelint-order": "5.0.0",
"typescript": "4.7.4"
}
}