Ted 5 years ago
parent
commit
840b18cfbb

+ 8 - 3
README.md

@@ -1,4 +1,9 @@
-## 硅谷live以太坊智能合约 第七课作业
-这里是同学提交作业的目录
+## 基于以太坊开发的智能合约员工薪酬管理系统
 
-### 第七课:课后作业
+## usage
+
+```
+git clone https://git.tedxiong.com/TedXiong/Payroll
+cd Payroll
+npm run start
+```

+ 0 - 6
build_webpack/asset-manifest.json

@@ -1,6 +0,0 @@
-{
-  "main.css": "static/css/main.58cf12da.css",
-  "main.css.map": "static/css/main.58cf12da.css.map",
-  "main.js": "static/js/main.5647bb78.js",
-  "main.js.map": "static/js/main.5647bb78.js.map"
-}

BIN
build_webpack/favicon.ico


+ 0 - 1
build_webpack/index.html

@@ -1 +0,0 @@
-<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="shortcut icon" href="/favicon.ico"><title>Truffle Box</title><link href="/static/css/main.58cf12da.css" rel="stylesheet"></head><body><div id="root"></div><script type="text/javascript" src="/static/js/main.5647bb78.js"></script></body></html>

File diff suppressed because it is too large
+ 0 - 9
build_webpack/static/css/main.58cf12da.css


+ 0 - 1
build_webpack/static/css/main.58cf12da.css.map

@@ -1 +0,0 @@
-{"version":3,"sources":[],"names":[],"mappings":"","file":"static/css/main.58cf12da.css","sourceRoot":""}

File diff suppressed because it is too large
+ 0 - 65
build_webpack/static/js/main.5647bb78.js


File diff suppressed because it is too large
+ 0 - 1
build_webpack/static/js/main.5647bb78.js.map


File diff suppressed because it is too large
+ 5593 - 359
package-lock.json


+ 15 - 4
package.json

@@ -1,6 +1,7 @@
 {
-  "name": "react-box",
-  "version": "0.1.0",
+  "name": "payroll",
+  "version": "1.0.0",
+  "description": "one demo for ethereum smart contact",
   "private": true,
   "devDependencies": {
     "autoprefixer": "6.5.1",
@@ -49,8 +50,9 @@
     "whatwg-fetch": "1.0.0"
   },
   "dependencies": {
-    "antd": "^3.3.3",
+    "antd": "^3.6.1",
     "dotenv": "^2.0.0",
+    "npm": "^6.1.0",
     "react": "^15.4.2",
     "react-dom": "^15.4.2",
     "truffle-hdwallet-provider": "0.0.3"
@@ -99,5 +101,14 @@
   },
   "eslintConfig": {
     "extends": "react-app"
-  }
+  },
+  "author": "tedxiong",
+  "license": "Apache-2.0",
+  "repository": {
+    "type": "git",
+    "url": "https://git.tedxiong.com/TedXiong/Payroll"
+  },
+  "keywords": [
+    "payroll"
+  ]
 }