-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 903 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
{
"name": "webpack-app-imba",
"description": "Hello World for Imba",
"keywords": [
"imba"
],
"author": "Sindre Aarsaether",
"bugs": "https://github.com/imba/webpack-app-imba/issues",
"version": "1.0.0",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"start": "webpack-dev-server --hot --content-base dist/",
"express": "imba src/server.imba",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch --progress --colors --display-modules"
},
"files": [],
"directories": {},
"homepage": "http://imba.io",
"repository": {
"type": "git",
"url": "git://github.com/imba/hello-world-imba.git"
},
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"imba": "^2.0.0-alpha.100",
"webpack": "^4.44.1",
"webpack-dev-server": "^3.11.0"
},
"devDependencies": {
"webpack-cli": "^3.3.12"
}
}