-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
113 lines (113 loc) · 3.08 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "rest-on-couch",
"version": "17.0.0",
"description": "Interface to CouchDB that allows the control of permissions on the documents",
"main": "src/index.js",
"files": [
"bin",
"public",
"src",
"views"
],
"bin": {
"rest-on-couch-import": "./bin/rest-on-couch-import.js"
},
"jest": {
"testMatch": [
"<rootDir>/test/unit/**/*.js"
],
"testEnvironment": "node",
"setupFiles": [
"./test/setup/setup.js"
],
"coverageProvider": "v8",
"testTimeout": 20000
},
"scripts": {
"build": "vite build",
"debug": "node --env-file=.env.dev --inspect bin/rest-on-couch-server.js",
"eslint": "eslint . --cache",
"eslint-fix": "npm run eslint -- --fix",
"prettier": "prettier . --check",
"prettier-write": "prettier . --write",
"start:dev": "vite --port 8080 --open",
"start:prod": "NODE_ENV=production npm run build && node bin/rest-on-couch-server.js",
"start:devserver": "nodemon --env-file=.env.dev --ignore ./src/client bin/rest-on-couch-server.js",
"test": "npm run test-coverage && npm run eslint && npm run prettier",
"test-coverage": "npm run test-only -- --coverage",
"test-only": "jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/rest-on-couch.git"
},
"keywords": [
"couch",
"couchdb"
],
"author": "Michaël Zasso",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/rest-on-couch/issues"
},
"homepage": "https://github.com/cheminfo/rest-on-couch#readme",
"volta": {
"node": "22.14.0"
},
"dependencies": {
"@koa/router": "^13.1.0",
"commander": "^13.1.0",
"debug": "^4.4.0",
"extend": "^3.0.2",
"fold-to-ascii": "^5.0.1",
"fs-extra": "^11.3.0",
"got": "^11.8.3",
"has-own": "^1.0.1",
"kcors": "^2.2.2",
"klaw": "^4.1.0",
"koa": "^2.15.4",
"koa-bodyparser": "^4.4.1",
"koa-compose": "^4.1.0",
"koa-hbs": "^1.0.0",
"koa-passport": "^6.0.0",
"koa-response-time": "^2.1.0",
"koa-session": "^7.0.2",
"koa-static": "^5.0.0",
"ldapjs": "^2.3.3",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"object-hash": "^3.0.0",
"passport-facebook": "^3.0.0",
"passport-github": "^1.1.0",
"passport-google": "^0.3.0",
"passport-google-oauth20": "^2.0.0",
"passport-ldapauth": "^3.0.1",
"passport-local": "^1.0.0",
"randomatic": "^3.1.1",
"raw-body": "^3.0.0",
"zenodo": "^1.0.2"
},
"devDependencies": {
"@vitejs/plugin-react-refresh": "^1.3.6",
"eslint": "^9.20.1",
"eslint-config-zakodium": "^14.0.0",
"immer": "^10.1.1",
"jest": "^29.7.0",
"jquery": "^3.7.1",
"nodemon": "^3.1.9",
"prettier": "^3.5.1",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.1.5",
"redux": "^5.0.1",
"redux-actions": "^3.0.3",
"redux-persist": "^6.0.0",
"redux-promise-middleware": "^6.2.0",
"redux-thunk": "^3.1.0",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"vite": "^6.1.0"
}
}