onion/package.json

74 lines
1.8 KiB
JSON
Raw Normal View History

2015-05-12 15:28:59 +02:00
{
2015-05-15 15:05:17 +02:00
"name": "Onion",
"version": "0.0.1",
"description": "Das neue web client for Ascribe",
"main": "js/app.js",
"engines": {
"node": "0.10.x"
},
2015-06-05 09:17:41 +02:00
"scripts": {
2015-06-08 15:24:58 +02:00
"lint": "eslint ./js",
"postinstall": "npm run build",
"build": "gulp build --production",
"start": "node server.js"
2015-06-05 09:17:41 +02:00
},
2015-05-15 15:05:17 +02:00
"author": "Ascribe",
"license": "Copyright",
2015-06-01 14:22:04 +02:00
"private": true,
2015-05-15 15:05:17 +02:00
"devDependencies": {
2015-06-05 09:17:41 +02:00
"babel-eslint": "^3.1.11",
"babel-jest": "^5.2.0",
"jest-cli": "^0.4.0"
},
"dependencies": {
2015-06-08 17:20:08 +02:00
"alt": "^0.16.5",
"babelify": "^6.1.2",
"bootstrap-sass": "^3.3.4",
"browser-sync": "^2.7.5",
2015-06-09 17:53:44 +02:00
"browserify": "^9.0.8",
2015-06-08 17:20:08 +02:00
"classnames": "^1.2.2",
"compression": "^1.4.4",
2015-05-15 15:05:17 +02:00
"envify": "^3.4.0",
2015-06-08 17:20:08 +02:00
"es6-promise": "^2.1.1",
2015-06-05 09:17:41 +02:00
"eslint": "^0.22.1",
"eslint-plugin-react": "^2.5.0",
2015-06-08 17:20:08 +02:00
"express": "^4.12.4",
"gulp": "^3.8.11",
"gulp-concat": "^2.5.2",
2015-06-05 09:17:41 +02:00
"gulp-eslint": "^0.13.2",
"gulp-if": "^1.2.5",
2015-06-08 15:42:28 +02:00
"gulp-minify-css": "^1.1.6",
"gulp-notify": "^2.2.0",
"gulp-sass": "^2.0.1",
"gulp-sourcemaps": "^1.5.2",
2015-06-09 17:53:44 +02:00
"gulp-template": "^3.0.0",
2015-06-08 15:42:28 +02:00
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.4",
2015-06-08 09:53:14 +02:00
"harmonize": "^1.4.2",
"isomorphic-fetch": "^2.0.2",
2015-05-15 15:05:17 +02:00
"jest-cli": "^0.4.0",
"lodash": "^3.9.3",
2015-05-15 15:05:17 +02:00
"object-assign": "^2.0.0",
2015-05-15 15:38:25 +02:00
"react": "^0.13.2",
2015-06-01 14:22:04 +02:00
"react-bootstrap": "~0.22.6",
2015-06-05 13:15:31 +02:00
"react-datepicker": "~0.8.0",
2015-05-18 16:35:08 +02:00
"react-router": "^0.13.3",
2015-06-08 17:20:08 +02:00
"react-textarea-autosize": "^2.2.3",
2015-06-09 17:53:44 +02:00
"reactify": "^1.1.0",
2015-06-05 13:15:31 +02:00
"shmui": "^0.1.0",
2015-06-08 17:20:08 +02:00
"uglifyjs": "^2.4.10",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.1.2",
"yargs": "^3.10.0"
2015-05-15 15:05:17 +02:00
},
"jest": {
"scriptPreprocessor": "node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/alt",
"<rootDir>/js/alt.js"
]
}
2015-05-12 15:28:59 +02:00
}