-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 2.05 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
{
"name": "pdb-rna-viewer",
"version": "0.2.0",
"description": "The PDB RNA viewer depicts the secondary structure of a RNA in a 2D representation.",
"keywords": [
"BioJS",
"PDB component",
"PDB RNA Viewer",
"R2DT",
"PDBe",
"Rfam"
],
"homepage": "https://github.com/mandarsd/pdb-rna-viewer#readme",
"repository": {
"type": "git",
"url": "https://github.com/mandarsd/pdb-rna-viewer.git"
},
"bugs": {
"url": "https://github.com/mandarsd/pdb-rna-viewer/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\"",
"build": "npm run build-tsc && npm run build-webpack && npm run bundle-webcomponent",
"build-tsc": "concurrently \"tsc --incremental\" \"tsc --build tsconfig.json --incremental\"",
"webpack": "webpack",
"build-webpack": "webpack --mode production --config ./webpack.config.js",
"watch": "concurrently --names \"tsc,srv,ext,wpc\" --kill-others \"npm:watch-tsc\" \"npm:watch-webpack\"",
"watch-tsc": "tsc --watch --incremental",
"watch-webpack": "webpack -w --mode development --display minimal",
"serve": "http-server -p 1338",
"bundle-webcomponent": "gulp"
},
"author": {
"name": "Mandar Deshpande",
"email": "mandar@ebi.ac.uk"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/runtime": "^7.15.4",
"babel-loader": "^8.2.2",
"concurrently": "^6.3.0",
"cpx2": "^4.0.0",
"css-loader": "^6.4.0",
"del": "^6.0.0",
"extra-watch-webpack-plugin": "^1.0.3",
"file-loader": "^6.0.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-header": "^2.0.9",
"http-server": "^13.0.2",
"mini-css-extract-plugin": "^2.4.2",
"node-sass": "^6.0.1",
"raw-loader": "^4.0.2",
"sass-loader": "^12.2.0",
"style-loader": "^3.3.0",
"typescript": "^4.4.4",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
},
"dependencies": {
"lit-element": "^3.0.1",
"tslib": "^2.3.1"
}
}