-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.67 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
{
"name": "@umami/node",
"version": "0.4.0",
"description": "Node client for Umami",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/umami-software/node.git"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c",
"types": "tsc && tsc-alias",
"check-types": "tsc",
"lint": "eslint src --ext .ts,.tsx"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"prettier --write"
]
},
"devDependencies": {
"@rollup/plugin-alias": "^4.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@testing-library/react": "^12.1.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"esbuild": "^0.19.11",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^7.0.4",
"jest": "^27.2.4",
"lint-staged": "^11.1.2",
"prettier": "^2.2.1",
"prettier-eslint": "^13.0.0",
"rollup": "^4.9.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"rollup-plugin-postcss": "^4.0.2",
"tsc-alias": "^1.8.2",
"typescript": "^4.7.4"
}
}