-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 2.09 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
{
"name": "dash_ngl",
"version": "0.0.1",
"description": "python dash wrapper for the ngl protein viewer",
"repository": {
"type": "git",
"url": "git://github.com/https://github.com/IvoLeist/dash-ngl.git"
},
"bugs": {
"url": "https://github.com/https://github.com/IvoLeist/dash-ngl/issues"
},
"homepage": "https://github.com/https://github.com/IvoLeist/dash-ngl",
"main": "build/index.js",
"scripts": {
"start": "webpack-serve --config ./webpack.serve.config.js --open",
"validate-init": "python _validate_init.py",
"prepublishOnly": "npm run validate-init",
"lint:test": "eslint src",
"lint": "eslint src --fix",
"build:js": "webpack --mode production",
"build:py_and_r": "dash-generate-components ./src/lib/components dash_ngl -p package-info.json --r-prefix 'DashNgl'",
"build:py_and_r-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:py_and_r)",
"build": "npm run build:js && npm run build:py_and_r",
"build:activated": "npm run build:js && npm run build:py_and_r-activated"
},
"author": "Ivo Leist <Ivo.leist@googlemail.com>",
"license": "MIT",
"dependencies": {
"ngl": "^0.10.4",
"ramda": "^0.27.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"copyfiles": "^2.2.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"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.41.5",
"webpack-cli": "3.3.10",
"webpack-serve": "3.2.0"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}