basic-imba/package.json

39 lines
951 B
JSON
Raw Normal View History

2016-01-16 10:29:42 +01:00
{
"name": "hello-world-imba",
"description": "Hello World for Imba",
2017-10-19 18:30:02 +02:00
"keywords": [
"imba"
],
2016-01-16 10:29:42 +01:00
"author": "Sindre Aarsaether",
"bugs": "https://github.com/somebee/hello-world-imba/issues",
"version": "1.0.0",
"engines": {
2018-02-09 15:58:42 +01:00
"node": ">=6.0.0"
2016-01-16 10:29:42 +01:00
},
2017-10-19 18:30:02 +02:00
"scripts": {
2018-02-09 15:58:42 +01:00
"start": "imba src/server.imba",
2019-10-01 20:01:16 +02:00
"dev": "webpack-dev-server --hot --content-base dist/",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch --progress --colors --display-modules"
2017-10-19 18:30:02 +02:00
},
2016-01-16 10:29:42 +01:00
"files": [],
"directories": {},
"homepage": "http://imba.io",
"repository": {
"type": "git",
"url": "git://github.com/somebee/hello-world-imba.git"
},
2017-10-19 18:30:02 +02:00
"license": "MIT",
2016-01-16 10:29:42 +01:00
"dependencies": {
"css-loader": "^3.2.0",
"express": "^4.17.1",
2020-01-02 10:30:21 +01:00
"imba": "^1.5.2",
"style-loader": "^1.0.0",
"webpack": "^4.39.3",
"webpack-dev-server": "^3.8.0"
},
"devDependencies": {
"webpack-cli": "^3.3.7"
2016-01-16 10:29:42 +01:00
}
}