onion/package.json

46 lines
1.1 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",
"scripts": {
2015-05-15 15:05:17 +02:00
"watch": "watchify -o build/app.js -v -d js/app.js",
"build": "browserify . -t [envify --NODE_ENV production] | uglifyjs -cm > build/app.js",
2015-05-15 15:05:17 +02:00
"test": "jest"
},
"author": "Ascribe",
"license": "Copyright",
"browserify": {
"transform": [
"babelify",
"envify"
]
},
"devDependencies": {
"babel-jest": "^4.0.0",
"babelify": "^6.0.2",
"browserify": "^9.0.8",
"envify": "^3.4.0",
"jest-cli": "^0.4.0",
"reactify": "^1.1.0",
"watchify": "^3.1.2"
},
"dependencies": {
"alt": "^0.16.5",
2015-05-15 15:05:17 +02:00
"classnames": "^1.2.2",
"isomorphic-fetch": "^2.0.2",
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-05-18 16:35:08 +02:00
"react-router": "^0.13.3",
"uglifyjs": "^2.4.10"
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
}