-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.28 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.28 KB
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
{
"name": "@geeks-react-components/utils",
"version": "2.0.3",
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://node.nuget.app.geeks.ltd/"
},
"license": "MIT",
"scripts": {
"build": "cross-env BABEL_ENV=production rollup -c=../../rollup.config.js",
"lint:css": "stylelint 'src/**/*.tsx'",
"lint:fix": "run-p -c 'lint:css --fix' 'lint:ts --fix'",
"lint:ts": "eslint src/**/*.{ts,tsx}",
"lint": "run-p -c lint:css lint:ts",
"prebuild": "rimraf dist && tsc",
"test:watch": "yarn test --watch",
"test": "tsc && jest --selectProjects utils --config ../../jest.config.js",
"watch": "yarn run build -w"
},
"author": {
"name": "Geeks Ltd",
"email": "info@geeks.ltd.uk"
},
"peerDependencies": {
"axios": ">=1.4.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"styled-components": "^6.0.4"
},
"dependencies": {
"crypto-js": "^4.2.0",
"date-fns": "^3.6.0",
"swr": "^2.2.5"
},
"gitHead": "ed7948ea15442db9bfe91252c62539a19d2d2aeb"
}