-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.86 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.86 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
{
"name": "dwords-web",
"version": "0.0.1",
"description": "dWeb-based dictionary app that utilizes dTrees.",
"main": "main.js",
"scripts": {
"development": "nodemon",
"build": "webpack --config webpack.config.client.production.js && webpack --mode=production --config webpack.config.server.js",
"start": "NODE_ENV=production node ./dist/server.generated.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwebprotocol/dwords-web.git"
},
"keywords": [
"dwords",
"distributed",
"dictionary",
"dweb",
"dtree"
],
"author": "Jared Rice Sr. <jared@peepsx.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dwebprotocol/dwords-web/issues"
},
"homepage": "https://dwords.network",
"dependencies": {
"@hot-loader/react-dom": "latest",
"@material-ui/core": "latest",
"@material-ui/styles": "latest",
"body-parser": "latest",
"compression": "latest",
"cookie-parser": "^1.4.5",
"cors": "latest",
"dswarm-web": "latest",
"dweb-sdk": "latest",
"dwebtree": "latest",
"express": "latest",
"graceful-fs": "latest",
"helmet": "latest",
"react": "latest",
"react-dom": "latest",
"react-hot-loader": "latest",
"react-router-dom": "latest"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/plugin-syntax-top-level-await": "^7.12.13",
"@babel/preset-env": "latest",
"@babel/preset-react": "latest",
"babel-loader": "latest",
"nodemon": "latest",
"webpack": "latest",
"webpack-cli": "latest",
"webpack-dev-middleware": "latest",
"webpack-hot-middleware": "latest",
"webpack-node-externals": "latest"
}
}