-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "@piwikpro/next-piwik-pro",
"version": "3.2.1",
"description": "Piwik PRO tracking library for Next.js",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"source": "src/index.tsx",
"author": "Piwik Pro Integration Team <[email protected]>",
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "yarn eslint .",
"build": "tsc",
"build:docs": "typedoc && concat-md --decrease-title-levels --start-title-level-at=2 docs_raw > README.md && node scripts/postProcessDocs.js",
"dev": "tsc --watch"
},
"repository": {
"type": "git",
"url": "[email protected]:PiwikPRO/next-piwik-pro.git"
},
"peerDependencies": {
"next": ">=13.0.0"
},
"dependencies": {
"@piwikpro/react-piwik-pro": "^2.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.7",
"@types/react": "^18.2.47",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"concat-md": "^0.5.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-standard": "^4.1.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
}
}