-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.09 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
{
"name": "analytics",
"version": "0.1.0",
"description": "Prezly Analytics package based on analytics-next by Segment",
"private": true,
"scripts": {
"build": "npm run build -w packages/analytics-nextjs",
"watch": "concurrently --kill-others --names 'analytics-nextjs' 'npm run watch -w packages/analytics-nextjs'",
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint --workspaces -- --fix",
"prettier": "prettier --check './packages/**/*.(js|ts|tsx)'",
"prettier:fix": "npm run prettier -- --write --no-list-different",
"test": "npm run test --workspaces",
"typecheck": "tsc --noEmit --incremental",
"check": "npm run lint && npm run typecheck && npm run test",
"release": "npm run release:prepare && npm run release:publish",
"release:preview": "npm run release:prepare && npm run release:publish:preview",
"release:prepare": "npm run check",
"release:publish": "lerna publish",
"release:publish:preview": "lerna publish --distTag preview --push=false --gitTagVersion=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prezly/analytics.git"
},
"author": "Prezly Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/prezly/analytics/issues"
},
"homepage": "https://github.com/prezly/analytics#readme",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@prezly/eslint-config": "5.4.4",
"@prezly/sdk": "21.2.0",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "8.0.1",
"@types/jest": "28.1.8",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"concurrently": "7.6.0",
"eslint": "8.57.1",
"eslint-config-next": "14.2.16",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"jest-fetch-mock": "3.0.3",
"jest-location-mock": "1.0.10",
"lerna": "8.1.8",
"prettier": "3.3.3",
"rimraf": "3.0.2",
"ts-jest": "28.0.8",
"typescript": "5.4.4"
},
"dependencies": {
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}