-
Notifications
You must be signed in to change notification settings - Fork 229
Expand file tree
/
Copy pathpackage.json
More file actions
153 lines (153 loc) · 4.8 KB
/
Copy pathpackage.json
File metadata and controls
153 lines (153 loc) · 4.8 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "fauxton",
"version": "1.3.1",
"description": "Fauxton is a modular CouchDB dashboard and Futon replacement.",
"main": "./index.js",
"directories": {
"test": "test"
},
"bin": {
"fauxton": "./bin/fauxton"
},
"engines": {
"node": "^20 || >=22"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/plugin-transform-async-to-generator": "^7.18.6",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.18.9",
"axios": "^1.7.9",
"babel-jest": "^30.2.0",
"babel-loader": "^8.2.5",
"babel-plugin-array-includes": "^2.0.3",
"bootstrap": "^5.2.3",
"chromedriver": "latest",
"css-loader": "^6.7.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"es5-shim": "^4.6.7",
"eslint": "^8.23.0",
"eslint-plugin-react": "^7.31.1",
"eslint-webpack-plugin": "^4.0.1",
"expose-loader": "^3.1.0",
"fetch-mock": "^11.1.3",
"file-loader": "^6.2.0",
"fs-extra": "^11.1.0",
"grunt": "^1.5.2",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-exec": "^3.0.0",
"grunt-shell": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"mini-css-extract-plugin": "^2.6.1",
"nightwatch": "^3.12.3",
"node-fetch": "^2.6.7",
"redux-mock-store": "^1.5.4",
"sinon": "^21.0.1",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"@webcomponents/url": "^0.7.8",
"ace-builds": "^1.10.1",
"acorn": "^8.8.0",
"async": "^3.2.4",
"backbone": "^1.4.1",
"base-64": "^1.0.0",
"bluebird": "^3.7.2",
"classnames": "^2.2.6",
"clipboard": "^2.0.11",
"core-js": "^3.25.0",
"http-proxy": "^1.18.1",
"jquery": "^3.6.1",
"jquery-param-fn": "^1.0.0",
"jsondiffpatch": "^0.7.2",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"moment": "^2.29.4",
"nano": "^10.0.0",
"prop-types": "^15.8.1",
"rc-slider": "^10.0.1",
"react": "^16.14.0",
"react-ace": "^11.0.1",
"react-bootstrap": "^2.7.0",
"react-dom": "^16.14.0",
"react-motion": "^0.5.0",
"react-redux": "^8.0.2",
"react-select": "^1.3.0",
"react-toastify": "^8.2.0",
"redux": "^4.2.0",
"redux-thunk": "^2.4.1",
"regenerator-runtime": "^0.13.9",
"rxjs": "^7.5.6",
"sass": "^1.58.0",
"sass-loader": "^13.3.0",
"semver": "^7.3.7",
"send": "^0.19.0",
"url": "^0.11.0",
"urls": "~0.0.3",
"whatwg-fetch": "^3.6.2",
"yargs": "^17.5.1"
},
"overrides": {
"nightwatch": {
"mocha": {
"serialize-javascript": "^6.0.2",
"js-yaml": "4.1.1"
}
},
"mocha": {
"js-yaml": "4.1.1"
}
},
"scripts": {
"stylecheck": "eslint --ext=js,jsx .",
"webpack:dev": "webpack --progress --color --config ./webpack.config.dev.js",
"webpack:test": "webpack --progress --color --config ./webpack.config.test.js",
"webpack:release": "webpack --progress --color --config ./webpack.config.release.js",
"jest": "jest --config ./jest-config.json",
"test": "grunt test && npm run jest",
"phantomjs": "./node_modules/.bin/mocha-phantomjs --debug=false --ssl-protocol=sslv2 --web-security=false --ignore-ssl-errors=true ./test/runner.html",
"couchdebug": "grunt couchdebug",
"couchdb": "grunt couchdb",
"couchapp": "grunt couchapp_deploy",
"dev": "node ./devserver.js",
"devtests": "webpack-dev-server --config webpack.config.test-dev.js --progress",
"nightwatch": "grunt nightwatch",
"nightwatch_retries": "grunt nightwatch_retries",
"start": "node ./bin/fauxton",
"start-debug": "DIST=./dist/debug node ./bin/fauxton",
"preversion": "node version-check.js && grunt release",
"test-before-publish": "npm run preversion && npm install . -g",
"create:animaldb": "node ./bin/create-animal-db",
"docker:couchdb-up": "docker compose -f ./docker/couchdb.yml up -d couchdb",
"docker:reset": "npm run docker:down && npm run docker:up",
"docker:logs": "docker logs couchdb",
"docker:up": "docker compose -f ./docker/couchdb.yml up -d",
"docker:down": "docker compose -f ./docker/couchdb.yml down",
"remove-test-dbs": "node ./bin/remove-test-dbs.js"
},
"repository": {
"type": "git",
"url": "https://github.com/apache/couchdb-fauxton.git"
},
"keywords": [
"couchdb",
"futon",
"fauxton"
],
"author": "The Apache CouchDB contributors",
"license": "Apache-2.0"
}