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-25 00:09:13 +03:00
|
|
|
"start": "npm run version-check && NODE_PATH=$NODE_PATH:. node bin/server.js",
|
|
|
|
"dev": "NODE_ENV=development npm run start",
|
2016-02-24 01:59:47 +03:00
|
|
|
"dev:search": "APP_NAME=search npm run dev",
|
|
|
|
"dev:disco": "APP_NAME=disco npm run dev",
|
2016-02-25 00:42:06 +03:00
|
|
|
"test": "npm run version-check && npm run lint && npm run unittest",
|
|
|
|
"unittest": "karma start --single-run",
|
2016-02-24 14:26:46 +03:00
|
|
|
"lint": "eslint .",
|
|
|
|
"eslint": "npm run lint",
|
2016-02-25 00:09:13 +03:00
|
|
|
"build": "npm run version-check && webpack --progress --color -p --config webpack.config.js",
|
2016-02-24 15:27:44 +03:00
|
|
|
"version-check": "node bin/version-check.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-29 18:13:01 +03:00
|
|
|
"helmet": "1.2.0",
|
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": {
|
2016-03-01 00:58:12 +03:00
|
|
|
"babel-core": "6.6.0",
|
2016-02-22 17:46:38 +03:00
|
|
|
"babel-eslint": "5.0.0",
|
2016-02-27 13:19:17 +03:00
|
|
|
"babel-loader": "6.2.4",
|
2016-02-25 19:35:30 +03:00
|
|
|
"babel-plugin-react-transform": "2.0.0",
|
2016-03-01 00:59:37 +03:00
|
|
|
"babel-plugin-transform-class-properties": "6.6.0",
|
2016-02-25 19:35:30 +03:00
|
|
|
"babel-plugin-transform-decorators-legacy": "1.3.4",
|
|
|
|
"babel-plugin-transform-object-rest-spread": "6.5.0",
|
2016-03-01 01:29:40 +03:00
|
|
|
"babel-preset-es2015": "6.6.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-25 00:42:06 +03:00
|
|
|
"chai": "3.5.0",
|
2016-02-24 15:27:44 +03:00
|
|
|
"chalk": "1.1.1",
|
2016-02-23 19:05:25 +03:00
|
|
|
"eslint": "2.2.0",
|
|
|
|
"eslint-config-airbnb": "6.0.2",
|
2016-02-24 02:11:15 +03:00
|
|
|
"eslint-plugin-react": "4.1.0",
|
2016-02-25 00:42:06 +03:00
|
|
|
"karma": "0.13.21",
|
|
|
|
"karma-chai": "0.1.0",
|
|
|
|
"karma-firefox-launcher": "0.1.7",
|
|
|
|
"karma-mocha": "0.2.2",
|
|
|
|
"karma-mocha-reporter": "1.2.2",
|
|
|
|
"karma-sinon": "1.0.4",
|
|
|
|
"karma-sourcemap-loader": "0.3.7",
|
|
|
|
"karma-webpack": "1.7.0",
|
|
|
|
"mocha": "2.4.5",
|
|
|
|
"react-addons-test-utils": "0.14.7",
|
2016-02-22 21:53:31 +03:00
|
|
|
"react-dom": "0.14.7",
|
|
|
|
"react-hot-loader": "1.3.0",
|
2016-02-25 19:35:30 +03:00
|
|
|
"react-transform-hmr": "1.0.2",
|
2016-02-24 15:27:44 +03:00
|
|
|
"semver": "5.1.0",
|
|
|
|
"shelljs": "0.6.0",
|
2016-02-25 00:42:06 +03:00
|
|
|
"sinon": "1.17.3",
|
2016-02-23 21:31:38 +03:00
|
|
|
"webpack": "1.12.14",
|
2016-02-25 00:09:13 +03:00
|
|
|
"webpack-dev-middleware": "1.5.1",
|
2016-02-22 17:46:38 +03:00
|
|
|
"webpack-dev-server": "1.14.1",
|
2016-03-02 02:35:07 +03:00
|
|
|
"webpack-hot-middleware": "2.9.0",
|
2016-02-24 21:34:19 +03:00
|
|
|
"webpack-isomorphic-tools": "2.2.30"
|
2016-02-22 17:40:12 +03:00
|
|
|
}
|
2016-02-22 12:39:48 +03:00
|
|
|
}
|