forked from ThayalanGR/prime-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.19 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": "prime-select",
"description": "Prime Select - An opinionated dependancy array based caching library",
"version": "1.10.0",
"author": "ThayalanGR",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"storybook": "start-storybook -p 6006",
"prettier": "prettier --write src/**/*.ts{,x}",
"build-storybook": "build-storybook",
"chromatic": "npx chromatic --project-token=9c1f4f202a48",
"version:minor": "yarn build && npm version minor",
"version:major": "yarn build && npm version major",
"version:patch": "yarn build && npm version patch"
},
"dependencies": {
"lodash.isequal": "4.5.0",
"lodash.isobject": "^3.0.2",
"lodash.transform": "^4.6.0",
"rfdc": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@parcel/packager-ts": "2.13.0",
"@parcel/transformer-typescript-types": "2.13.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack4": "^6.5.12",
"@storybook/manager-webpack4": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@tsconfig/recommended": "^1.0.1",
"@types/lodash.isequal": "4.5.6",
"@types/lodash.isobject": "^3.0.7",
"@types/lodash.transform": "^4.6.7",
"@types/node": "^18.11.3",
"@types/react": "^18.0.21",
"babel-loader": "^8.2.5",
"chromatic": "^6.10.4",
"parcel": "^2.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": ">=3.0.0"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/ThayalanGR/prime-select.git"
},
"bugs": {
"url": "https://github.com/ThayalanGR/prime-select/issues"
},
"homepage": "https://github.com/ThayalanGR/prime-select#readme"
}