-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 893 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 893 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
{
"name": "doctor-who-api",
"description": "A RESTful API for getting information on the famous TV show \"Doctor Who\".",
"scripts": {
"build": "webpack --config webpack/webpack.config.ts --env env=prod",
"start": "node dist/bundle.js"
},
"keywords": [
"node",
"restful",
"api"
],
"author": "Ido Barnea",
"license": "Apache-2.0",
"dependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@types/express": "^4.17.21",
"babel-loader": "^9.1.3",
"express": "^4.18.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0",
"webpack-node-externals": "^3.0.0"
},
"devDependencies": {
"@types/node": "^20.12.12",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"webpack-dev-server": "^5.0.4"
}
}