-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.54 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.54 KB
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
{
"name": "izion-sdk-monorepo",
"version": "1.0.0",
"private": true,
"description": "Monorepo for Izion Web SDKs with high security and automation",
"author": "Izion Team",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"type-check": "turbo run type-check",
"clean": "turbo run clean",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish",
"create-sdk": "node scripts/create-sdk.js",
"prepare": "husky install",
"dev-help": "node scripts/dev-help.js",
"dev:payment": "pnpm dev --filter=@izion/payment-sdk"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.27.1",
"@playwright/test": "^1.40.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.7.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"sass": "^1.90.0",
"sass-embedded": "^1.90.0",
"turbo": "^1.10.0",
"typescript": "^5.3.0"
},
"packageManager": "pnpm@8.11.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}