-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.33 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.33 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
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
{
"name": "react-select-element",
"version": "2.9.46",
"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+https://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",
"pretest": "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.6"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/register": "^7.28.6",
"@chromatic-com/storybook": "^5.0.1",
"@sequencemedia/eslint-config-standard": "^0.2.107",
"@storybook/addon-links": "^10.2.13",
"@storybook/addon-webpack5-compiler-babel": "^4.0.0",
"@storybook/react-webpack5": "^10.2.13",
"babel-plugin-module-resolver": "^5.0.2",
"chai": "^6.2.2",
"core-js": "^3.48.0",
"cross-env": "^10.1.0",
"eslint": "9.38.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-storybook": "^10.2.13",
"globals": "^17.3.0",
"husky": "^9.1.7",
"mocha": "^11.7.5",
"prop-types": "^15.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rimraf": "^6.1.3",
"storybook": "^10.2.13"
},
"overrides": {
"storybook": "$storybook"
},
"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"
}
}