-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.55 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.55 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
{
"name": "dash-bootstrap-components",
"version": "2.0.5-dev",
"description": "Bootstrap components for Plotly Dash",
"repository": {
"type": "git",
"url": "git+https://github.com/dbc-team/dash-bootstrap-components.git"
},
"main": "lib/dash-bootstrap-components.min.js",
"scripts": {
"build": "NODE_ENV=production webpack --config=webpack/config.dist.js",
"build:lib": "webpack --config=webpack/config.lib.js",
"demo": "webpack serve --hot --port=8888 --config=webpack/config.demo.js",
"format": "prettier 'src/**/*.js' 'demo/*.js' --write && eslint 'src/**/*.js' 'demo/*.js' --fix",
"lint": "prettier 'src/**/*.js' 'demo/*.js' --list-different && eslint 'src/**/*.js' 'demo/*.js'",
"prepublishOnly": "NODE_ENV=production npm run build && NODE_ENV=production npm run build:lib",
"test": "jest",
"test:demo": "webpack --config=webpack/config.demo.js",
"test:watch": "jest --watch"
},
"files": [
"dist/dash_bootstrap_components.min.js",
"lib",
"src",
"LICENSE.txt",
"README.md"
],
"author": "Faculty <opensource@faculty.ai>",
"bugs": {
"url": "https://github.com/dbc-team/dash-bootstrap-components/issues"
},
"homepage": "https://www.dash-bootstrap-components.com",
"license": "Apache-2.0",
"dependencies": {
"@plotly/dash-component-plugins": "^1.2.3",
"classnames": "^2.5.1",
"fast-isnumeric": "^1.1.4",
"prop-types": "^15.8.1",
"ramda": "^0.30.1",
"react": "^18.3.1",
"react-bootstrap": "^2.10.9",
"react-dom": "^18.3.1"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
]
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.7",
"@babel/preset-react": "^7.26.3",
"@eslint/js": "^9.20.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint": "^9.20.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"react-docgen": "^5.4.3",
"style-loader": "^4.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
}
}