-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.96 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
{
"type": "module",
"name": "eon-server",
"version": "1.0.0",
"description": "REST API for serving Japanese kanji and vocabulary data",
"author": "Vladislav 'ithelor' Dietrich",
"main": "index.ts",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node --no-warnings --loader ts-paths-esm-loader --experimental-specifier-resolution=node dist/index.js",
"serve": "node --no-warnings --loader ts-paths-esm-loader --experimental-specifier-resolution=node src/index.ts",
"dev": "nodemon -e ts --exec \"npm run serve\""
},
"keywords": [
"rest",
"api",
"japanese",
"kentei",
"kanji",
"pitch",
"accent"
],
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv-flow": "^3.2.0",
"express": "^4.18.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.0",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.13",
"@types/dotenv-flow": "^3.2.0",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.5",
"@types/validator": "^13.11.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.0.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"ts-paths-esm-loader": "^1.3.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.7.4"
}
}