forked from molstar/pdbe-molstar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.69 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
82
{
"name": "emdb-molstar",
"version": "0.9.0",
"description": "Molstar implementation for EMDB",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\"",
"lint": "eslint src",
"build": "npm run build-tsc && npm run build-extra && node scripts.js light-skin && npm run build-webpack && node scripts.js clean-rubbish && npm run bundle-webcomponent",
"rebuild": "npm run clean && npm run build",
"clean": "node scripts.js clean-all",
"build-tsc": "tsc --incremental",
"build-extra": "cpx 'src/**/*.{scss,html,ico}' lib/",
"build-webpack": "webpack --mode production --config ./webpack.config.production.js",
"watch": "concurrently -c 'green,gray,blue' --names 'tsc,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 --config ./webpack.config.development.js",
"serve": "http-server -p 1338 -g",
"bundle-webcomponent": "node scripts.js bundle-webcomponent"
},
"files": [
"lib/",
"build/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/emdb-empiar/emdb-molstar.git"
},
"keywords": [
"Molstar",
"3D viewer",
"PDBe",
"EMDB",
"biojs"
],
"author": "Mandar Deshpande <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/emdb-empiar/emdb-molstar/issues"
},
"homepage": "https://github.com/emdb-empiar/emdb-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",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"babel-loader": "^8.2.5",
"concurrently": "^7.3.0",
"cpx2": "^4.2.0",
"css-loader": "^6.7.1",
"eslint": "^8.53.0",
"extra-watch-webpack-plugin": "^1.0.3",
"file-loader": "^6.2.0",
"http-server": "^14.1.0",
"mini-css-extract-plugin": "^2.6.1",
"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.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"crypto-browserify": "^3.12.0",
"d3-axis": "^3.0.0",
"d3-brush": "^3.0.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"lit": "^3.1.1",
"molstar": "3.44.0",
"path-browserify": "^1.0.1",
"stream-browserify": "^3.0.0"
}
}