-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "ilc-adapter-react",
"version": "0.0.0",
"description": "A single spa plugin for React apps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"parcel.d.ts",
"parcel.js",
"LICENSE.txt",
"NOTICE.md",
"server.js",
"server.d.ts"
],
"scripts": {
"build": "tsc",
"lint": "eslint src",
"test": "jest --coverage",
"format": "prettier --write .",
"check-format": "prettier --check .",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/namecheap/ilc-adapter-react.git"
},
"keywords": [
"single",
"page",
"application",
"spa",
"react",
"ILC"
],
"author": "Namecheap, Inc",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/namecheap/ilc-adapter-react/issues"
},
"homepage": "https://github.com/namecheap/ilc-adapter-react#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/react": "~18.3.12",
"@types/react-dom": "~18.3.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-plugin-jest": "^28.8.3",
"globals": "^15.11.0",
"husky": "^9.1.6",
"ilc-sdk": "^5.2.4",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.1.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"peerDependencies": {
"ilc-sdk": "^5.0.0",
"react": "~18.2.0",
"react-dom": "~18.2.0"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}