-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.22 KB
/
package.json
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
{
"name": "cs-source-file-server",
"version": "0.1.0",
"description": "A Simple CS:Source File Server made with NodeJS",
"main": "bundle.js",
"scripts": {
"predockerize": "npm run node:build",
"dockerize": "docker build -t cs-source-file-server .",
"prestart": "npm run dockerize",
"start": "docker run -d -p 8089:8089 -v `pwd`/public:/usr/src/app/public cs-source-file-server",
"docker-image": "docker run -d -p 8089:8089 -v `pwd`/public:/usr/src/app/public cs-source-file-server",
"node:watch": "nodemon ./build/bundle.js",
"node:build": "webpack --config webpack.config.js --progress --profile --display-error-details",
"node:build:watch": "npm run node:build -- --watch"
},
"author": "Arda C. Tugay",
"license": "MIT",
"dependencies": {
"express": "4.15.0",
"morgan": "1.8.1"
},
"devDependencies": {
"@types/debug": "0.0.29",
"@types/express": "4.0.35",
"@types/morgan": "1.7.32",
"@types/node": "6.0.63",
"babel-core": "6.23.1",
"babel-loader": "6.3.2",
"babel-preset-es2015": "6.22.0",
"copy-webpack-plugin": "4.0.1",
"nodemon": "1.11.0",
"ts-loader": "2.0.1",
"ts-node": "2.1.0",
"typescript": "2.2.1",
"webpack": "2.2.1"
}
}