homepage-frontend/package.json

60 lines
1.8 KiB
JSON
Raw Normal View History

2017-07-23 12:31:29 +00:00
{
2017-07-29 08:34:15 +00:00
"name": "@arwed/homepage",
2017-07-23 15:24:59 +00:00
"version": "0.0.1",
2017-07-29 08:34:15 +00:00
"description": "My personal homepage",
"main": "build/index.js",
"directories": {
"test": "test"
},
2017-07-23 12:31:29 +00:00
"scripts": {
"test": "npm run lint && npm run flow && npm run mocha",
"start": "webpack-dev-server --env development",
"build": "webpack --env production",
"mocha": "mocha --compilers js:babel-register --timeout 100 --slow 30 --throw-deprecation --use_strict",
"clean": "rm -rf build",
"flow": "flow",
"lint": "eslint src",
"prepublish": "in-publish && npm run clean && npm run test && npm run build || not-in-publish"
},
"author": "Arwed Mett",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.22.1",
2017-07-23 15:24:59 +00:00
"babel-eslint": "^7.2.3",
2017-07-28 21:03:26 +00:00
"babel-loader": "^6.4.1",
2017-07-23 12:31:29 +00:00
"babel-plugin-inferno": "^3.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^3.12.2",
2017-07-23 15:24:59 +00:00
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-inferno": "^7.0.1",
2017-07-23 12:31:29 +00:00
"file-loader": "^0.11.2",
"flow": "^0.2.3",
"flow-bin": "^0.37.4",
2017-07-28 21:03:26 +00:00
"flow-typed": "^2.1.5",
2017-07-23 12:31:29 +00:00
"in-publish": "^2.0.0",
"jsdom": "^9.10.0",
"mocha": "^3.2.0",
2017-07-28 21:03:26 +00:00
"raw-loader": "^0.5.1",
2017-07-23 12:31:29 +00:00
"url-loader": "^0.5.9",
2017-07-28 21:03:26 +00:00
"webpack": "^2.7.0",
"webpack-dev-server": "^2.6.1"
2017-07-23 12:31:29 +00:00
},
"dependencies": {
"babel-polyfill": "^6.23.0",
2017-07-28 21:03:26 +00:00
"ejs": "^2.5.6",
2017-07-23 15:24:59 +00:00
"express": "^4.15.3",
2017-07-28 21:03:26 +00:00
"inferno": "^3.7.0",
"inferno-compat": "^3.7.0",
"inferno-router": "^3.7.0",
"inferno-server": "^3.7.0",
2017-07-23 12:31:29 +00:00
"react-fontawesome": "^1.6.1",
"styled-components": "^2.1.1"
}
}