-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.43 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
{
"name": "react-select-element",
"version": "2.8.40",
"description": "React Select Element",
"main": "./index.cjs",
"author": {
"name": "Jonathan Perry for Sequence Media Limited",
"email": "sequencemedia@sequencemedia.net",
"url": "https://sequencemedia.net"
},
"license": "ISC",
"engines": {
"node": ">=22.11.0"
},
"repository": {
"type": "git",
"url": "git://github.com/sequencemedia/react-select-element.git"
},
"scripts": {
"babel": "babel src -d lib",
"babel:watch": "npm run babel -- -w",
"build": "npm run babel",
"build-storybook": "storybook build",
"build:watch": "npm run babel:watch",
"clean": "rimraf lib",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"prebuild": "npm run clean",
"prepare": "husky",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"test": "cross-env NODE_ENV=test mocha tests --recursive --verbose --color"
},
"dependencies": {
"classnames": "^2.5.1",
"nanoid": "^5.1.2"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.9",
"@babel/eslint-parser": "^7.26.8",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/register": "^7.25.9",
"@chromatic-com/storybook": "^3.2.5",
"@sequencemedia/eslint-config-standard": "^0.2.40",
"@storybook/addon-actions": "^8.6.4",
"@storybook/addon-interactions": "^8.6.4",
"@storybook/addon-links": "^8.6.4",
"@storybook/addon-webpack5-compiler-babel": "^3.0.5",
"@storybook/manager-api": "^8.6.4",
"@storybook/react": "^8.6.4",
"@storybook/react-webpack5": "^8.6.4",
"@storybook/theming": "^8.6.4",
"babel-plugin-module-resolver": "^5.0.2",
"chai": "^5.2.0",
"core-js": "^3.41.0",
"cross-env": "^7.0.3",
"eslint": "^9.21.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-storybook": "^0.11.4",
"globals": "^16.0.0",
"husky": "^9.1.7",
"mocha": "^11.1.0",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"storybook": "^8.6.4"
},
"imports": {
"#common": "./src/common/index.mjs"
},
"exports": {
".": {
"require": "./index.cjs",
"import": "./index.mjs"
},
"./class": "./lib/class/index.js",
"./common": "./lib/common/index.js",
"./hooks": "./lib/hooks/index.js"
}
}