forked from jonkoops/matomo-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.56 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
{
"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.1",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-airbnb-typescript": "^16.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.0.5",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"lerna": "^4.0.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.4",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"engines": {
"node": "^16"
}
}