-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.9 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.9 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
{
"name": "ferry-tempo-server",
"version": "2.0.10",
"description": "A full-stack implementation of the FerryTempo FTServer. Provides API endpoints and live debugging views.",
"main": "App.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"docs": "jsonschema2md -o docs/ -d schemas/ -x -",
"start": "node ./src/App.js",
"dev": "nodemon ./src/App.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@adobe/jsonschema2md": "^8.0.11",
"ajv": "^8.11.0",
"better-sqlite3": "^12.8.0",
"dotenv": "^16.3.1",
"express": "^4.18.3",
"node-fetch": "^3.2.0",
"nodemon": "^3.1.0",
"pug": "^3.0.2",
"validator": "^13.12.0",
"winston": "^3.13.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"chai": "^4.3.6",
"chai-json-schema": "^1.5.1",
"diff": "^8.0.4",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^28.2.0",
"jest": "^29.7.0",
"mocha": "^11.7.5",
"serialize-javascript": "^7.0.4"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"google"
],
"env": {
"node": true,
"mocha": true
},
"globals": {
"Promise": "readonly"
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 6,
"browser": true,
"node": true,
"es2020": true,
"es6": true,
"requireConfigFile": false
},
"rules": {
"max-len": [
2,
120,
4,
{
"ignoreUrls": true
}
],
"no-console": 0,
"object-curly-spacing": 0,
"linebreak-style": 0
}
},
"eslintIgnore": [
"node_modules"
]
}