-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 754 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 754 Bytes
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
{
"name": "mithril-boilerplate",
"version": "0.1.0",
"description": "Mithril boilerplate with ES6 support",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --config ./webpack.config.js --progress --colors",
"development": "NODE_ENV=development webpack-dev-server --inline --progress --colors --port 3000",
"start": "webpack -d --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"mithril": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}