-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
38
39
40
41
42
43
{
"name": "@common-theory/dashboard",
"version": "0.0.1",
"description": "The common theory EOS dashboard",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"build:production": "npm run build -- --mode=production --optimize-minimize",
"publish": "npm run build:production && ipfs add ./static/index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"common",
"theory",
"workit",
"web",
"app"
],
"author": "Chance Hudson",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@types/react": "^16.4.13",
"@types/react-dom": "^16.0.7",
"babel-loader": "^8.0.2",
"enzyme": "^3.6.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"ipfs": "^0.31.7",
"ts-loader": "^5.0.0",
"typescript": "^3.0.3",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"dependencies": {
"eosjs": "^16.0.6",
"react": "^16.5.0",
"react-dom": "^16.5.0"
}
}