-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.07 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.07 KB
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
{
"name": "@paciolan/remote-component",
"version": "0.0.0-semantic-versioning",
"description": "Dynamically load a React Component from a URL",
"main": "dist/index.js",
"author": "Paciolan",
"license": "MIT",
"release": {
"branch": "master",
"repositoryUrl": "git@gitlabdev.paciolan.info:development/library/javascript/react/remote-component.git",
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
]
},
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf coverage dist",
"cz": "git-cz",
"rebuild": "npm run clean && npm run build",
"test": "jest",
"test:changed": "npm run test -- --changedSince HEAD",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"watch": "npm run build -- --watch",
"prepare": "husky"
},
"dependencies": {
"@paciolan/remote-module-loader": "^3.2.2"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^9.39.4",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"git-cz": "^4.9.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rimraf": "^6.1.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
},
"peerDependencies": {
"react": ">=16.9",
"react-dom": ">=16.9"
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
}
}