-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 881 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 881 Bytes
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
{
"name": "rest-api",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"test": "node --test test/**/*.test.js",
"start": "node --env-file-if-exists=.env server.js",
"pretest": "eslint modules/decode-post-id.js test/**/*.js",
"dev": "node --watch --env-file-if-exists=.env server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"alphanum-sort": "^1.0.2",
"hashids": "^2.3.0",
"lru-cache": "^11.5.1",
"mysql2": "^3.22.4",
"passport": "^0.7.0",
"passport-http-bearer": "^1.0.1",
"restify": "^11.1.0",
"restify-cors-middleware2": "^2.2.1",
"sequelize": "^6.37.8",
"sha1": "^1.1.1"
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-kokarn": "^6.0.2"
},
"engines": {
"node": ">=20.18.0 <23"
},
"eslintConfig": {
"extends": "kokarn/nodejs"
}
}