-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.56 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
{
"name": "@rcsb/rcsb-api-tools",
"version": "4.3.1",
"description": "RCSB PDB API request library",
"main": "build/app.js",
"files": [
"build"
],
"scripts": {
"downloadDwSchemas": "ts-node src/DownloadSchemas/DwSchemas.ts",
"downloadSearchSchemas": "ts-node src/DownloadSchemas/SearchSchemas.ts",
"buildDwInterface": "ts-node src/RcsbDw/Generator/GenerateInterfaces.ts",
"buildSearchInterface": "ts-node src/RcsbSearch/Generator/GenerateInterfaces.ts && ts-node src/RcsbSearch/Generator/CompileSearchMetadata.ts",
"buildGraphQLInterfaces": "ts-node src/RcsbGraphQL/Generator/GenerateInterfaces.ts",
"buildSources": "npm run buildSearchInterface && npm run buildGraphQLInterfaces && npm run buildDwInterface",
"testServices": "npm run testSearch && npm run testGraphQL",
"testSearch": "ts-node src/RcsbSearch/QueryTest.ts",
"testGraphQL": "npx ts-node src/RcsbGraphQL/QueryTest.ts",
"build": "webpack --config webpack.config.js",
"tsc": "tsc",
"buildApp": "npm run clean && npm run buildSources && npm run testServices && npm run tsc && npm run build",
"publishApp": "npm publish",
"clean": "del-cli build/*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/rcsb/rcsb-api-tools.git"
},
"author": "Joan Segura Mora <[email protected]>",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@graphql-codegen/typescript": "^4.0.9",
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.0",
"@types/node-fetch": "^2.6.11",
"@types/object-hash": "^3.0.6",
"ansi-regex": "^6.0.1",
"babel-loader": "^9.1.3",
"command-line-args": "^6.0.0",
"command-line-usage": "^7.0.3",
"del-cli": "^5.1.0",
"extract-zip": "^2.0.1",
"fast-xml-parser": "^4.4.1",
"fs-extra": "^11.2.0",
"graphql-tag": "^2.12.6",
"json-schema-to-typescript": "^15.0.1",
"lodash": "^4.17.21",
"nodejs-file-downloader": "^4.13.0",
"simple-git": "^3.25.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@graphql-codegen/cli": "^5.0.2",
"graphql": "^16.9.0",
"graphql-request": "^6.1.0",
"lzutf8": "^0.6.3",
"object-hash": "^3.0.0"
}
}