forked from jonkoops/matomo-tracker
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.62 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.62 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
{
"private": true,
"scripts": {
"build": "yarn build:ts && yarn build:ts:es",
"build:ts": "tsc -b packages/js packages/react",
"build:ts:es": "tsc -b packages/js/tsconfig.es.json packages/react/tsconfig.es.json",
"clean:generated": "find ./packages -name \"*.d.ts\" -type f -delete && find ./packages -name \"*.tsbuildinfo\" -type f -delete",
"start": "yarn build:ts -- --watch & yarn build:ts:es -- --watch",
"lint": "eslint .",
"test": "jest",
"prettier": "prettier --write ./packages/**/**/*.{ts,tsx}",
"prepublishOnly": "yarn build",
"postinstall": "lerna link",
"publish:canary": "lerna publish --canary",
"publish:stable": "lerna publish"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.30",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lerna": "^6.6.1",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^5.0.2"
}
}