-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.16 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
{
"name": "elk-node-search-proxy",
"version": "0.0.1",
"private": true,
"type": "module",
"engines": {
"node": "^14",
"npm": ">=6"
},
"scripts": {
"start": "node ./app/server.js",
"test": "jest",
"watch": "npm-watch",
"check": "find . -name '*.js' -not -path './node_modules/*' -exec node --check {} \\;"
},
"watch": {
"start": {
"extensions": "js,jsx",
"verbose": true
}
},
"jest": {
"testEnvironment": "jsdom"
},
"dependencies": {
"@elastic/elasticsearch": "^7.11.0",
"compression": "^1.7.4",
"cookie-parser": "~1.4.6",
"debug": "~4.3.3",
"express": "~4.17.1",
"express-async-handler": "^1.2.0",
"express-react-views": "^0.11.0",
"helmet": "^4.5.0",
"http-errors": "^1.8.1",
"morgan": "~1.10.0",
"node-fetch": "^2.6.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"ansi-regex": "^6.0.1",
"jest": "^27.4.3",
"jquery": "^3.6.0",
"nock": "^13.2.1",
"nodemon": "^2.0.15",
"npm-watch": "^0.11.0",
"number-words": "^1.1.1",
"setimmediate": "^1.0.5",
"superagent": "^6.1.0",
"supertest": "^6.1.6"
}
}