-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.37 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "bstats",
"version": "0.4.0",
"description": "Real-Time Server Statistics",
"main": "./dist/server/index.js",
"typings": "./dist/server/index.d.ts",
"repository": "https://github.com/bleenco/bstats.git",
"author": "Jan Kuri <jan@bleenco.com>",
"license": "MIT",
"bin": {
"bstats": "./dist/server/index.js"
},
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"build:watch": "tsc -w",
"prebuild": "npm run clean",
"prepublish": "npm run build:prod",
"compile": "tsc && node ./dist/server/index.js",
"dev": "nodemon -w src/server -i src/app -e ts --exec \"npm run compile\"",
"build:prod": "npm run build && npm run build:app:prod",
"build:app": "webpack --env.dev --progress --hide-modules",
"build:app:prod": "webpack --env.aot -p --progress --hide-modules",
"start": "webpack-dev-server --env.dev --env.serve --progress",
"start:aot": "webpack-dev-server --env.aot --env.dev --env.serve --progress"
},
"dependencies": {
"chalk": "^1.1.3",
"cors": "^2.8.3",
"express": "^4.15.2",
"fs-extra": "^2.1.2",
"rxjs": "^5.3.0",
"uws": "^9.14.0"
},
"devDependencies": {
"@angular/common": "^4.0.1",
"@angular/compiler": "^4.0.1",
"@angular/compiler-cli": "^4.0.1",
"@angular/core": "^4.0.1",
"@angular/platform-browser": "^4.0.1",
"@angular/platform-browser-dynamic": "^4.0.1",
"@angular/router": "^4.0.2",
"@ngtools/webpack": "^1.3.0",
"@types/body-parser": "1.16.3",
"@types/chalk": "^0.4.31",
"@types/cors": "^2.8.1",
"@types/d3": "^4.7.0",
"@types/express": "^4.0.35",
"@types/fs-extra": "^2.0.0",
"@types/node": "^7.0.12",
"add-asset-html-webpack-plugin": "^1.0.2",
"bulma": "^0.4.0",
"compression-webpack-plugin": "^0.4.0",
"copy-webpack-plugin": "^4.0.1",
"core-js": "^2.4.1",
"css-loader": "^0.28.0",
"d3": "4.12.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"portfinder": "^1.0.13",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"typescript": "2.4.2",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2",
"webpack-dll-bundles-plugin": "^1.0.0-beta.5",
"webpack-merge": "^4.1.0",
"zone.js": "^0.8.5"
}
}