riot-web/package.json

57 lines
2.1 KiB
JSON
Raw Normal View History

{
2015-09-16 15:13:16 +02:00
"name": "vector-web",
2015-10-28 19:32:13 +01:00
"version": "0.1.2",
2015-09-16 15:13:16 +02:00
"description": "Vector webapp",
"author": "matrix.org",
"repository": {
"type": "git",
2015-09-16 15:13:16 +02:00
"url": "https://github.com/vector-im/vector-web"
},
"license": "Apache-2.0",
"style": "bundle.css",
2015-11-30 18:31:32 +01:00
"matrix-react-parent": "matrix-react-sdk",
"scripts": {
2015-09-22 19:49:04 +02:00
"reskindex": "reskindex vector -h src/skins/vector/header",
"build:modernizr": "modernizr -c .modernizr.json -d src/vector/modernizr.js",
2015-10-05 11:20:02 +02:00
"build:css": "catw \"src/skins/vector/css/**/*.css\" -o vector/bundle.css -c uglifycss --no-watch",
"build:compile": "babel --source-maps -d lib src",
"build:bundle": "NODE_ENV=production webpack -p lib/vector/index.js vector/bundle.js",
"build": "npm run build:css && npm run build:compile && npm run build:bundle",
"start:js": "webpack -w src/vector/index.js vector/bundle.js",
2015-10-05 11:20:02 +02:00
"start:skins:css": "catw \"src/skins/vector/css/**/*.css\" -o vector/bundle.css",
"//cache": "Note the -c 1 below due to https://code.google.com/p/chromium/issues/detail?id=508270",
2015-10-05 11:20:02 +02:00
"start": "parallelshell \"npm run start:js\" \"npm run start:skins:css\" \"http-server -c 1 vector\"",
2015-09-25 12:51:35 +02:00
"clean": "rimraf lib vector/bundle.css vector/bundle.js vector/bundle.js.map",
"prepublish": "npm run build:css && npm run build:compile"
},
"dependencies": {
"classnames": "^2.1.2",
2015-07-08 17:25:27 +02:00
"filesize": "^3.1.2",
"flux": "~2.0.3",
"gfm.css": "^1.1.1",
"linkifyjs": "^2.0.0-beta.4",
2015-11-05 15:45:16 +01:00
"matrix-js-sdk": "https://github.com/matrix-org/matrix-js-sdk.git#develop",
2015-11-18 15:54:32 +01:00
"matrix-react-sdk": "https://github.com/matrix-org/matrix-react-sdk.git#develop",
2015-11-10 00:13:46 +01:00
"modernizr": "^3.1.0",
2015-07-08 15:34:26 +02:00
"q": "^1.4.1",
2015-11-10 00:13:46 +01:00
"react": "^0.14.2",
"react-dnd": "^2.0.2",
"react-dnd-html5-backend": "^2.0.0",
"react-dom": "^0.14.2",
2015-11-27 16:39:29 +01:00
"react-gemini-scrollbar": "^2.0.1"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"catw": "^1.0.1",
"http-server": "^0.8.4",
2015-10-02 12:48:52 +02:00
"json-loader": "^0.5.3",
"parallelshell": "^1.2.0",
"rimraf": "^2.4.3",
"source-map-loader": "^0.1.5",
"uglifycss": "0.0.15",
"webpack": "^1.12.6"
}
}