Added frontend to the repo

This commit is contained in:
maciejhirsz
2018-06-27 11:00:53 +02:00
parent 07a793cbb2
commit 003ed008e9
8 changed files with 156 additions and 119 deletions
+8 -7
View File
@@ -1,14 +1,15 @@
{
"name": "dotstats-server",
"name": "dotstats-backend",
"version": "0.1.0",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node dist/index.js",
"tsc": "tsc"
},
"author": "Parity Technologies Ltd. <admin@parity.io>",
"license": "GPL-3.0",
"description": "Polkadot Telemetry frontend",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node build/index.js",
"tsc": "tsc"
},
"dependencies": {
"@types/express": "^4.16.0",
"@types/node": "^10.3.3",
+1 -1
View File
@@ -2,7 +2,7 @@
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"outDir": "dist",
"outDir": "build",
"strictNullChecks": true,
"sourceMap": true,
"moduleResolution": "node",