forked from molstar/pdbe-molstar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.44 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
{
"name": "pdbe-molstar",
"version": "3.1.0",
"description": "Molstar implementation for PDBe",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\"",
"build": "npm run build-tsc && npm run build-extra && npm run build-webpack && npm run bundle-webcomponent",
"build-tsc": "concurrently \"tsc --incremental\" \"tsc --build tsconfig.json --incremental\"",
"build-extra": "cpx \"src/**/*.{scss,html,ico}\" lib/",
"webpack": "webpack",
"build-webpack": "webpack --mode production --config ./webpack.config.js",
"watch": "concurrently -c \"green,green,gray,gray\" --names \"tsc,srv,ext,wpc\" --kill-others \"npm:watch-tsc\" \"npm:watch-extra\" \"npm:watch-webpack\"",
"watch-tsc": "tsc --watch --incremental",
"watch-extra": "cpx \"src/**/*.{scss,html,ico}\" lib/ --watch",
"watch-webpack": "webpack -w --mode development --stats minimal",
"serve": "http-server -p 1338 -g",
"bundle-webcomponent": "gulp"
},
"files": [
"lib/",
"build/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PDBeurope/pdbe-molstar.git"
},
"keywords": [
"Molstar",
"3D viewer",
"PDBe",
"biojs"
],
"author": "Mandar Deshpande <mandar@ebi.ac.uk>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PDBeurope/pdbe-molstar/issues"
},
"homepage": "https://github.com/PDBeurope/pdbe-molstar#readme",
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/runtime": "^7.17.9",
"@types/d3": "^7.4.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"babel-loader": "^8.2.5",
"concurrently": "^7.3.0",
"cpx2": "^4.2.0",
"css-loader": "^6.7.1",
"del": "^6.0.0",
"extra-watch-webpack-plugin": "^1.0.3",
"file-loader": "^6.2.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-header": "^2.0.9",
"http-server": "^14.1.0",
"mini-css-extract-plugin": "^2.6.1",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"typescript": "^4.6.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"d3-axis": "^3.0.0",
"d3-brush": "^3.0.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"lit-element": "^2.2.1",
"molstar": "^3.15.0"
}
}