-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
70 lines (70 loc) · 2.45 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
{
"name": "@rcsb/rcsb-molstar",
"version": "2.11.1",
"description": "RCSB PDB apps and props based on Mol*.",
"homepage": "https://github.com/molstar/rcsb-molstar#readme",
"repository": {
"type": "git",
"url": "https://github.com/molstar/rcsb-molstar.git"
},
"bugs": {
"url": "https://github.com/molstar/rcsb-molstar/issues"
},
"scripts": {
"test": "npm run lint",
"lint": "eslint src/**/*.ts",
"build": "npm run build-tsc && npm run build-extra && npm run build-webpack",
"build-tsc": "tsc --incremental",
"build-extra": "cpx \"src/**/*.{scss,html,ico}\" build/src/",
"build-webpack": "webpack --mode production",
"watch": "concurrently -c \"green,gray,gray\" --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}\" build/src/ --watch",
"watch-webpack": "webpack -w --mode development --stats minimal",
"serve": "http-server -p 1335",
"preversion": "npm run test",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "build/src/index.js",
"files": [
"build/dist/",
"build/src/viewer/"
],
"author": "RCSB PDB and Mol* Contributors",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"concurrently": "^9.1.0",
"cpx2": "^8.0.0",
"crypto-browserify": "^3.12.1",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"extra-watch-webpack-plugin": "^1.0.3",
"file-loader": "^6.2.0",
"fs-extra": "^11.2.0",
"mini-css-extract-plugin": "^2.9.2",
"path-browserify": "^1.0.1",
"raw-loader": "^4.0.2",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"stream-browserify": "^3.0.0",
"style-loader": "^4.0.0",
"typescript": "^5.7.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"molstar": "^4.10.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rxjs": "^7.8.1",
"tslib": "^2.8.1"
}
}