-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.78 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
{
"name": "analytics",
"version": "0.1.0",
"description": "Prezly Analytics package based on analytics-next by Segment",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "npm run build -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": "echo \"Tests? maybe next time ;)\" && exit 0",
"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 && npm run build",
"release:publish": "lerna publish",
"release:publish:preview": "lerna publish --npm-tag preview --skip-git"
},
"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/*"],
"engines": {
"node": ">= 14.x",
"npm": ">= 7.x"
},
"devEngines": {
"node": ">= 14.x",
"npm": ">= 7.x"
},
"devDependencies": {
"@prezly/eslint-config": "^4.1.0",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"eslint": "^8.8.0",
"lerna": "^4.0.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
},
"dependencies": {
"@prezly/sdk": "^6.21.0",
"next": "^12.1.4",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}