-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
93 lines (93 loc) · 2.76 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@neolution-ch/javascript-utils",
"version": "1.1.0",
"description": "todo @drebrez",
"homepage": "https://neolution-ch.github.io/javascript-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/neolution-ch/javascript-utils"
},
"license": "MIT",
"author": "Neolution",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.modern.js",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"jsnext:main": "dist/index.modern.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"lint": "eslint \"**/*.{ts,tsx}\" --cache --max-warnings 0",
"prepack": "yarn build",
"prepare-pr": "yarn prettier . --write && yarn lint && yarn build && yarn test",
"prettier-check": "prettier --check .",
"prettier-write": "prettier --write .",
"start": "rollup -c -w",
"test": "yarn jest",
"start-all": "concurrently \"yarn start\" \"yarn start-yalc\"",
"start-yalc": "yarn nodemon --watch dist -x \"yarn yalc push\"",
"storybook": "start-storybook -p 6006"
},
"dependencies": {
"date-fns": "^2.30.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@popperjs/core": "^2.11.7",
"@release-it/keep-a-changelog": "^4.0.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@types/jest": "^29.5.3",
"@types/node": "^18.16.3",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsdoc": "^46.4.4",
"eslint-plugin-storybook": "^0.6.12",
"jest": "^29.6.1",
"jest-localstorage-mock": "^2.4.26",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"release-it": "^16.1.2",
"rollup": "^3.21.4",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^5.1.6",
"webpack": "^5.82.0",
"yalc": "^1.0.0-pre.53"
},
"peerDependencies": {},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}