-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 963 Bytes
/
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
{
"name": "safe-web-app-imba",
"description": "A CRUD example for the SAFE Network with Imba",
"keywords": [
"imba",
"SAFE",
"network",
"maidsafe",
"CRUD"
],
"author": "Sebastian Wiesendahl",
"bugs": "https://github.com/swiesend/safe-web-app-imba/issues",
"version": "1.0.0",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"start": "imba src/server.imba",
"dev": "webpack serve --mode=development",
"build": "webpack",
"watch": "webpack --watch --progress --colors --display-modules"
},
"files": [],
"directories": {},
"homepage": "http://imba.io",
"repository": {
"type": "git",
"url": "git://github.com/swiesend/safe-web-app-imba.git"
},
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"imba": "^1.5.2",
"webpack": "^5.23.0"
},
"devDependencies": {
"loader-utils": "^2.0.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}