-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 2.21 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
63
{
"name": "pagbank-for-woocommerce",
"version": "1.2.1",
"author": "Elias Júnior <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"setup": "./scripts/initial-setup.sh",
"prebuild": "composer install --no-dev",
"build": "tsc && vite build",
"postbuild": "composer install",
"dev": "composer install && tsc && vite build --watch",
"lint": "concurrently \"pnpm lint:core\" \"pnpm lint:ui\"",
"lint:core": "./vendor/bin/phpcs",
"lint:ui": "eslint --ext .ts,.tsx,.js,.jsx src/ vite.config.ts plugins",
"boot": "docker compose up",
"boot:arm64v8": "docker compose -f docker-compose.arm64v8.yml up",
"test": "./vendor/bin/phpunit",
"todos": "leasot 'src/**/*.{php,ts,js}'",
"prepare": "husky install",
"make:pot": "./scripts/make-pot.sh",
"generate-md": "wp-readme-to-md --screenshot-url=https://raw.githubusercontent.com/pagseguro/pagbank-for-woocommerce/main/wordpress_org_assets/{screenshot}.png"
},
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@types/jquery": "^3.5.16",
"@types/lodash": "^4.14.194",
"@types/node": "^18.15.5",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"concurrently": "^7.6.0",
"eslint": "^8.53.0",
"eslint-config-next": "^14.0.2",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"jszip": "^3.10.1",
"leasot": "^13.3.0",
"prettier": "^3.0.3",
"typescript": "*",
"vite": "^4.2.1",
"wp-readme-to-markdown": "^1.0.1"
},
"dependencies": {
"@fontsource/roboto": "^5.0.1",
"autonumeric": "^4.9.0",
"axios": "^1.6.0",
"card-validator": "^8.1.1",
"date-fns": "^2.30.0",
"jquery": "^3.6.4",
"lodash": "^4.17.21"
}
}