forked from jonkoops/matomo-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.68 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
{
"private": true,
"scripts": {
"build": "npm run build:ts && npm run 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": "npm run build:ts -- --watch & npm run build:ts:es -- --watch",
"lint": "eslint .",
"test": "jest",
"prettier": "prettier --write ./packages/**/**/*.{ts,tsx}",
"prepublishOnly": "npm run build",
"postinstall": "lerna link",
"publish:canary": "lerna publish --canary",
"publish:stable": "lerna publish"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.0",
"@types/jest": "^26.0.12",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"jest": "^27.0.4",
"jest-cli": "^27.0.3",
"lerna": "^4.0.0",
"prettier": "^2.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"ts-jest": "^27.0.3",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"engines": {
"node": "^16"
}
}