-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@useblu/utils",
"version": "1.2.0",
"private": false,
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc --declaration",
"dev": "ts-node src/index.ts",
"lint": "eslint src/**/*.ts* --fix",
"test": "TZ=UTC+3 jest",
"coverage": "TZ=UTC+3 jest --coverage"
},
"dependencies": {
"@sentry/react": "^8.9.2",
"react": "^18.2.0"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.2.2",
"prettier": "^2.3.2",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"tsup": "^6.4.0",
"typescript": "^4.8.4"
},
"description": "<div align=\"center\"> <h1> Blu Utils </h1> <pre>yarn add <a href=\"...\">....</a></pre> </div>",
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pagnet/blu-utils.git"
},
"keywords": [
"utils"
],
"author": "Blu",
"bugs": {
"url": "https://github.com/Pagnet/blu-utils/issues"
},
"homepage": "https://github.com/Pagnet/blu-utils#readme",
"files": [
"lib/**/*"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false
}