This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "wdfn-graph-server",
"version": "0.39.0dev",
"description": "Water Data For The Nation graph server renderer",
"main": "src/app.js",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/coverage/**",
"!**/app.js",
"!**/swagger-def.js"
]
},
"scripts": {
"clean": "rm -rf node_modules",
"test:watch": "jest --watchAll",
"test": "jest --forceExit",
"start": "DEBUG=express:* node src/app.js",
"lint": "npx eslint '**/**.js'",
"watch": "run-p watch:*",
"watch:server": "DEBUG=express:* nodemon src/app.js",
"watch:swagger": "nodemon -w src/app.js -w src/swagger-def.js -x \"npm run build:swagger\"",
"build:swagger": "swagger-jsdoc -d src/swagger-def.js src/app.js -o src/swagger.json"
},
"engines": {
"node": "16.15.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usgs/wdfn-graph-server.git"
},
"author": "USGS",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/usgs/wdfn-graph-server/issues"
},
"homepage": "https://github.com/usgs/wdfn-graph-server#readme",
"dependencies": {
"express": "4.18.1",
"express-cache-headers": "0.1.4",
"express-validator": "6.14.1",
"generic-pool": "3.8.2",
"puppeteer": "14.4.1",
"swagger-ui-express": "4.4.0"
},
"devDependencies": {
"eslint": "^8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^28.1.1",
"node-mocks-http": "^1.11.0",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"swagger-jsdoc": "^6.2.1"
}
}