-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.01 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.01 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
{
"name": "dash_loading_spinners",
"version": "1.0.2",
"description": "Fun and funky loading spinners for your Dash apps",
"repository": {
"type": "git",
"url": "git://github.com/glsdown/dash-loading-spinners.git"
},
"bugs": {
"url": "https://github.com/glsdown/dash-loading-spinners/issues"
},
"homepage": "https://dash-loading-spinners.sproodlebuzz.co.uk/",
"main": "build/index.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack/demo.config.js --hot",
"validate-init": "python _validate_init.py",
"build:js": "webpack --config ./webpack/config.js --mode production",
"build:backends": "dash-generate-components ./src/lib/components dash_loading_spinners -p package-info.json --r-prefix 'dls' --jl-prefix 'dls'",
"build": "npm run build:js && npm run build:backends",
"build:activated": "npm run build:js && npm run build:backends-activated",
"format": "prettier src/**/*.js --write",
"lint": "prettier src/**/*.js --list-different"
},
"author": "Gemma Down <gemmalsdown@icloud.com>",
"license": "MIT",
"dependencies": {
"ramda": "^0.26.1",
"react-css-spinners": "^4.0.2",
"react-loader-spinner": "^4.0.0",
"react-spinners": "^0.11.0"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"copyfiles": "^2.1.1",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-react": "^7.14.2",
"npm": "^6.1.0",
"prettier": "^2.3.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-docgen": "^4.1.1",
"react-dom": "^16.8.6",
"style-loader": "^0.23.1",
"styled-jsx": "^3.2.1",
"webpack": "4.36.1",
"webpack-cli": "3.3.6",
"webpack-dev-server": "^3.11.2"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}