-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
{
"name": "rudderstack-shopify-tracker",
"version": "1.6.0",
"description": "Tracks client-side events on Shopify stores",
"main": "src/main.js",
"scripts": {
"start": "node src/main.js",
"release": "npx standard-version",
"release:github": "DEBUG=conventional-github-releaser npx conventional-github-releaser -p angular --config github-release.config.js",
"commit-msg": "commitlint --edit",
"test": "jest --passWithNoTests",
"pre-commit": "npx lint-staged && npm run test",
"prepare": "husky install",
"check:lint": "eslint . -f json -o reports/eslint.json || exit 0"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{json,js,ts,md}": "prettier --write"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9",
"commitlint": "^19.5.0",
"conventional-github-releaser": "^3.1.5",
"dotenv": "^15.0.0",
"husky": "^8.0.3",
"koa": "^2.13.4",
"koa-router": "^10.1.1",
"lint-staged": "^15.2.4",
"standard-version": "^9.5.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.6.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^2.0.15",
"prettier": "^3.2.4"
},
"overrides": {
"semver-regex": "3.1.4",
"conventional-changelog": "3.1.25",
"trim-newlines": "3.0.1",
"http-cache-semantics": "4.1.1",
"got": "11.8.5"
}
}