-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.01 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
{
"name": "react-sitemap-generator",
"version": "1.1.6",
"author": {
"name": "Markus Nyborg Moltke",
"email": "[email protected]"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"description": "Helper to generate a sitemap for react apps",
"repository": {
"type": "github",
"url": "https://github.com/Unknown-Studios/react-sitemap-generator.git"
},
"files": [
"dist/**/*"
],
"license": "MPL-2.0",
"scripts": {
"start": "ts-node index.ts",
"build": "tsc -b",
"clean": "rm -f -rf ./dist && rm -f tsconfig.tsbuildinfo",
"lint": "eslint --fix . && prettier --write . --ignore-unknown",
"lint:staged": "lint-staged",
"test": "ts-mocha -p ./tsconfig.json test/**/*.ts",
"coverage": "nyc yarn test",
"prepublishOnly": "yarn build",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
"xmlbuilder2": "^3.1.1"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-router": "^6.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^22.1.0",
"@types/react": "^18.2.22",
"@types/rewire": "^2.5.28",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.7.2",
"chai": "^4.3.8",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.0.2",
"mocha": "^10.2.0",
"nyc": "^17.0.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-router": "^6.16.0",
"rewire": "^7.0.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.2.2"
}
}