-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.94 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@big-whale-labs/frontend-utils",
"version": "0.1.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BigWhaleLabs/frontend-utils"
},
"files": [
"dist"
],
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"np": {
"2fa": false,
"tests": false,
"cleanup": false,
"yarn": false
},
"scripts": {
"start": "vite build --watch",
"release": "np --any-branch",
"test": "jest",
"build": "cross-env NODE_ENV=production tsc && vite build",
"pretty": "prettier --check src",
"lint": "yarn pretty && eslint --max-warnings 0 --ext ts,tsx,json src",
"prepublishOnly": "yarn lint && yarn build && yarn test"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"devDependencies": {
"@preact/preset-vite": "^2.4.0",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-relative-import-paths": "^1.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"jest": "^29.3.1",
"np": "^7.6.2",
"postcss": "^8.4.19",
"preact": "^10.11.3",
"prettier": "^2.8.0",
"rollup": "^3.5.0",
"rollup-plugin-dts": "^5.0.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vite-plugin-dts": "^1.7.1"
},
"packageManager": "[email protected]",
"dependencies": {
"axios": "^1.2.0",
"react-toastify": "^9.1.1"
}
}