-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.26 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
{
"name": "ninja-news-api",
"version": "0.1.0",
"description": "Template for a Node.js API with TypeScript using Express.js",
"main": "index.js",
"type": "module",
"repository": "https://github.com/ypk46/node-express-template.git",
"scripts": {
"tsc": "tsc",
"start": "pm2-runtime start dist/index.js",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"build": "npm run tsc",
"dev": "tsx src/index.ts",
"watch": "nodemon"
},
"keywords": [
"node",
"node.js",
"boilerplate",
"express",
"rest",
"api",
"docker",
"eslint",
"prettier"
],
"author": "Yuyi Kimura",
"license": "MIT",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"pm2": "^5.4.2",
"reflect-metadata": "^0.2.2",
"tsx": "^4.16.2",
"typedi": "^0.10.0",
"winston": "^3.13.1"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^20.14.11",
"eslint": "^8.57.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1"
}
}