generated from rudderlabs/rudder-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
98 lines (98 loc) · 3.13 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "gatsby-plugin-rudderstack",
"version": "4.0.2",
"description": "Event tracking with RudderStack in your Gatsby frontend.",
"main": "gatsby-ssr.js",
"scripts": {
"build": "babel src --out-dir ./dist --ignore __tests__ && npm run copy:files",
"watch": "babel -w src --out-dir ./dist --ignore __tests__",
"clean": "rm -rf dist",
"check:lint": "eslint \"src/**/*.js\"",
"check:lint:ci": "eslint \"src/**/*.js\" -f json -o reports/eslint.json || exit 0",
"check:circular": "madge --circular --extensions js ./src || exit 0",
"check:duplicates": "jscpd src --threshold 5",
"check:security": "npm audit --recursive --audit-level=high",
"format": "prettier --write .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"pre-commit": "npm run test && npx lint-staged",
"commit-msg": "commitlint --edit",
"commit": "git-cz",
"test": "exit 0",
"test:ci": "exit 0",
"copy:files": "cp CHANGELOG.md dist/ && cp LICENSE.md dist/ && cp package.json dist/ && cp gatsby-node.js dist/ && cp README.md dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rudderlabs/gatsby-plugin-rudderstack.git"
},
"keywords": [
"rudderstack",
"rudderstack analytics",
"event tracking",
"gatsby",
"gatsby-plugin"
],
"author": "RudderStack",
"license": "MIT",
"bugs": {
"url": "https://github.com/rudderlabs/gatsby-plugin-rudderstack/issues"
},
"homepage": "https://github.com/rudderlabs/gatsby-plugin-rudderstack#readme",
"devDependencies": {
"@babel/cli": "7.25.7",
"@babel/core": "7.25.7",
"@babel/eslint-parser": "7.25.7",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/preset-env": "7.25.7",
"@babel/preset-react": "7.25.7",
"@commitlint/config-conventional": "19.5.0",
"@digitalroute/cz-conventional-changelog-for-jira": "8.0.1",
"commitizen": "4.3.1",
"commitlint": "19.5.0",
"conventional-changelog-cli": "5.0.0",
"conventional-github-releaser": "3.1.5",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-compat": "6.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-sonarjs": "2.0.3",
"eslint-plugin-unicorn": "56.0.0",
"git-cz": "4.9.0",
"husky": "9.1.6",
"jscpd": "4.0.5",
"lint-staged": "15.2.10",
"madge": "8.0.0",
"prettier": "3.3.3",
"standard-version": "9.5.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{json,js,md,ts}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"jiraMode": false,
"jiraOptional": true,
"skipScope": true,
"defaultType": "feat"
}
},
"overrides": {
"dot-prop": "5.3.0",
"http-cache-semantics": "4.1.1",
"semver-regex": "3.1.4",
"trim-newlines": "3.0.1",
"conventional-github-releaser": {
"conventional-changelog-core": "4.2.2"
}
},
"resolutions": {
"dot-prop": "5.3.0",
"semver-regex": "3.1.4",
"trim-newlines": "3.0.1"
}
}