-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "next-yandex-metrica",
"version": "1.1.2",
"description": "Yandex Metrica integration for Next.js",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/reapziq/next-yandex-metrica",
"author": "Vladislav Doronin <reapziq@gmail.com>",
"license": "MIT",
"keywords": [
"next",
"next.js",
"yandex",
"metrica",
"metrika",
"analytics"
],
"scripts": {
"build": "del-cli dist && tsc",
"prepublishOnly": "pnpm build",
"lint": "eslint src --fix --max-warnings 0",
"lint:ts": "tsc --noEmit",
"test": "jest",
"test:ci": "jest --ci --coverage",
"format": "prettier --write --log-level silent .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/react": "^18.2.43",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"del-cli": "^5.1.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next": "^14.0.4",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"next": ">=11.0.0",
"react": ">=17.0.0"
}
}