-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 819 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 819 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
{
"name": "server-template",
"version": "1.0.0",
"description": "A template to bootstrap simple express API server",
"main": "index.ts",
"author": "Gift Nnko",
"license": "MIT",
"private": false,
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.2",
"nodemon": "^2.0.16",
"prettier": "^2.7.1"
},
"scripts": {
"start": "node --loader ts-node/esm ./src/index.ts",
"build": "yarn webpack",
"start:dev": "nodemon",
"format": "yarn prettier --write '**/*.{ts,js,json,md,yml,yaml,css,scss,html}'",
"postbuild": "./app_build.sh"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.33",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.2"
}
}