-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1020 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
{
"name": "imba-realworld",
"version": "1.0.0",
"description": "Exemplary real world application built with Imba",
"main": "index.js",
"scripts": {
"start": "imba src/server.imba",
"dev": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"watch": "webpack --watch --progress --colors --display-modules --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmdwirizki/imba-realworld.git"
},
"keywords": [
"imba",
"realworld-frontend"
],
"author": "Rizki Lazuardi",
"license": "ISC",
"bugs": {
"url": "https://github.com/rmdwirizki/imba-realworld/issues"
},
"homepage": "https://github.com/rmdwirizki/imba-realworld#readme",
"dependencies": {
"date-fns": "^1.29.0",
"imba": "^1.3.3",
"imba-router": "^0.2.0",
"marked": "^0.4.0"
},
"devDependencies": {
"express": "^4.16.3",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.14"
}
}