2016-02-22 12:39:48 +03:00
|
|
|
{
|
|
|
|
"name": "mozilla-addons-frontend",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "Universal front-end projects to complement addons-server.",
|
|
|
|
"main": "index.js",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2016-02-22 21:53:31 +03:00
|
|
|
"start": "bin/server.js",
|
|
|
|
"dev": "npm run start & webpack-dev-server --progress --color --port 3000",
|
2016-02-23 23:53:41 +03:00
|
|
|
"test": "npm run test:lint && npm run test:style",
|
2016-02-23 19:05:25 +03:00
|
|
|
"test:lint": "eslint .",
|
|
|
|
"test:style": "jscs .",
|
2016-02-23 19:01:58 +03:00
|
|
|
"build": "webpack --progress --color -p --config webpack.prod.config.js"
|
2016-02-22 12:39:48 +03:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/mozillla/addons-frontend.git"
|
|
|
|
},
|
|
|
|
"author": "Mozilla Add-ons Team",
|
|
|
|
"license": "MPL-2.0",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/mozillla/addons-frontend/issues"
|
|
|
|
},
|
2016-02-22 17:40:12 +03:00
|
|
|
"homepage": "https://github.com/mozillla/addons-frontend#readme",
|
|
|
|
"dependencies": {
|
2016-02-22 21:53:31 +03:00
|
|
|
"express": "4.13.4",
|
2016-02-22 18:01:35 +03:00
|
|
|
"react": "0.14.7",
|
|
|
|
"react-router": "2.0.0"
|
2016-02-22 17:46:38 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"babel-core": "6.5.2",
|
|
|
|
"babel-eslint": "5.0.0",
|
2016-02-22 21:53:31 +03:00
|
|
|
"babel-loader": "6.2.3",
|
2016-02-22 17:46:38 +03:00
|
|
|
"babel-plugin-transform-class-properties": "6.5.2",
|
|
|
|
"babel-preset-es2015": "6.5.0",
|
2016-02-22 21:53:31 +03:00
|
|
|
"babel-preset-react": "6.5.0",
|
2016-02-22 17:46:38 +03:00
|
|
|
"babel-preset-stage-2": "6.5.0",
|
2016-02-22 21:53:31 +03:00
|
|
|
"babel-register": "6.5.2",
|
2016-02-23 19:05:25 +03:00
|
|
|
"eslint": "2.2.0",
|
|
|
|
"eslint-config-airbnb": "6.0.2",
|
|
|
|
"eslint-plugin-react": "4.0.0",
|
2016-02-22 21:53:31 +03:00
|
|
|
"history": "2.0.0",
|
2016-02-23 23:53:41 +03:00
|
|
|
"jscs": "2.10.1",
|
2016-02-22 21:53:31 +03:00
|
|
|
"react-dom": "0.14.7",
|
|
|
|
"react-hot-loader": "1.3.0",
|
2016-02-23 21:31:38 +03:00
|
|
|
"webpack": "1.12.14",
|
2016-02-22 17:46:38 +03:00
|
|
|
"webpack-dev-server": "1.14.1",
|
2016-02-22 17:40:12 +03:00
|
|
|
"webpack-isomorphic-tools": "2.2.29"
|
|
|
|
}
|
2016-02-22 12:39:48 +03:00
|
|
|
}
|