forked from facultyai/dash-bootstrap-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.73 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
{
"name": "dash-bootstrap-components",
"version": "0.10.7-dev",
"description": "Bootstrap components for Plotly Dash",
"repository": "github:facultyai/dash-bootstrap-components",
"main": "lib/dash-bootstrap-components.min.js",
"scripts": {
"build": "run-s clean build:js build:py build:r",
"build:lib": "webpack --config=webpack/config.lib.js",
"build:js": "NODE_ENV=production webpack --config=webpack/config.dist.js",
"build:py": "dash-generate-components ./src/components dash_bootstrap_components && gulp postPyBuild",
"build:r": "dash-generate-components ./src/components dash_bootstrap_components --r-prefix 'dbc' && gulp postRBuild",
"clean": "gulp clean",
"demo": "webpack-dev-server --hot --inline --port=8888 --config=webpack/config.demo.js",
"format": "prettier src/**/*.js --write",
"lint": "prettier src/**/*.js --list-different",
"prepublishOnly": "NODE_ENV=production npm run build && NODE_ENV=production npm run build:lib",
"test": "jest",
"test:demo": "webpack --content-base=demo --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/facultyai/dash-bootstrap-components/issues"
},
"homepage": "https://dash-bootstrap-components.opensource.faculty.ai",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@testing-library/jest-dom": "^5.11.3",
"@testing-library/react": "^10.4.8",
"@testing-library/user-event": "^10.0.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"copyfiles": "^2.2.0",
"css-loader": "^1.0.1",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-footer": "^2.0.2",
"gulp-rename": "^2.0.0",
"jest": "^24.9.0",
"mkdirp": "^0.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"react-docgen": "^2.21.0",
"style-loader": "^0.23.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"classnames": "^2.2.6",
"fast-isnumeric": "^1.1.3",
"is-absolute-url": "^2.1.0",
"prop-types": "^15.7.2",
"ramda": "^0.25.0",
"react": "^16.13.1",
"react-dom": "^16.13.0",
"reactstrap": "^8.5.1"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
],
"testEnvironment": "jest-environment-jsdom-global"
}
}