-
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) · 829 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 829 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": "node-express-class-inheritance",
"version": "0.0.1",
"description": "Simple express service with classes and inheritance.",
"main": "index.js",
"scripts": {
"start": "node dist/index",
"webpack": "webpack --config webpack.config.ts"
},
"keywords": [
"node-rest"
],
"author": "Miika",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.3"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.3",
"@types/helmet": "0.0.45",
"@types/node": "^13.9.3",
"concurrently": "^5.1.0",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
}
}