mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 14:33:22 +00:00
100 lines
3.2 KiB
JSON
100 lines
3.2 KiB
JSON
{
|
|
"name": "coriolis_shipyard",
|
|
"version": "2.2.6b",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/EDCD/coriolis"
|
|
},
|
|
"homepage": "https://coriolis.edcd.io",
|
|
"bugs": "https://github.com/EDCD/coriolis/issues",
|
|
"private": true,
|
|
"engine": "node >= 4.0.0",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"extract-translations": "grep -hroE \"(translate\\('[^']+'\\))|(tip.bind\\(null, '[^']+')\" src/* | grep -oE \"'[^']+'\" | grep -oE \"[^']+\" | sort -u -f",
|
|
"clean": "rimraf build",
|
|
"start": "node devServer.js",
|
|
"lint": "eslint --ext .js,.jsx src",
|
|
"test": "jest",
|
|
"prod-serve": "nginx -p $(pwd) -c nginx.conf",
|
|
"prod-stop": "kill -QUIT $(cat nginx.pid)",
|
|
"build": "npm run clean && NODE_ENV=production webpack -d -p --config webpack.config.prod.js",
|
|
"rsync": "rsync -ae \"ssh -i $CORIOLIS_PEM\" --delete build/ $CORIOLIS_USER@$CORIOLIS_HOST:~/wwws",
|
|
"deploy": "npm run lint && npm test && npm run build && npm run rsync"
|
|
},
|
|
"jest": {
|
|
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
|
|
"testRegex": "(/__tests__/test-.*|\\.(test|spec))\\.js$",
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"jsx"
|
|
],
|
|
"automock": true,
|
|
"bail": false,
|
|
"unmockedModulePathPatterns": [
|
|
"<rootDir>/node_modules/lodash",
|
|
"<rootDir>/node_modules/react",
|
|
"<rootDir>/node_modules/react-dom",
|
|
"<rootDir>/node_modules/react-addons-test-utils",
|
|
"<rootDir>/node_modules/react-testutils-additions",
|
|
"<rootDir>/node_modules/fbjs",
|
|
"<rootDir>/node_modules/fbemitter",
|
|
"<rootDir>/node_modules/classnames",
|
|
"<rootDir>/node_modules/d3",
|
|
"<rootDir>/node_modules/lz-string",
|
|
"<rootDir>/node_modules/jsen",
|
|
"coriolis-data",
|
|
"<rootDir>/src/app/shipyard",
|
|
"<rootDir>/src/app/i18n",
|
|
"<rootDir>/src/app/utils",
|
|
"<rootDir>/src/schemas",
|
|
"<rootDir>/__tests__"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"appcache-webpack-plugin": "^1.2.1",
|
|
"babel-core": "*",
|
|
"babel-eslint": "*",
|
|
"babel-jest": "*",
|
|
"babel-loader": "*",
|
|
"babel-preset-es2015": "*",
|
|
"babel-preset-react": "*",
|
|
"babel-preset-stage-0": "*",
|
|
"css-loader": "^0.23.0",
|
|
"eslint": "2.2.0",
|
|
"eslint-plugin-react": "^4.0.0",
|
|
"expose-loader": "^0.7.1",
|
|
"express": "^4.13.3",
|
|
"extract-text-webpack-plugin": "^0.9.1",
|
|
"file-loader": "^0.8.4",
|
|
"html-webpack-plugin": "^1.7.0",
|
|
"jest-cli": "^16.0.1",
|
|
"jsen": "^0.6.0",
|
|
"json-loader": "^0.5.3",
|
|
"less": "^2.5.3",
|
|
"less-loader": "^2.2.1",
|
|
"react-addons-test-utils": "^15.0.1",
|
|
"react-testutils-additions": "^15.1.0",
|
|
"rimraf": "^2.4.3",
|
|
"style-loader": "^0.13.0",
|
|
"url-loader": "^0.5.6",
|
|
"webpack": "^1.9.6",
|
|
"webpack-dev-server": "^1.14.0"
|
|
},
|
|
"dependencies": {
|
|
"babel-polyfill": "*",
|
|
"classnames": "^2.2.0",
|
|
"browserify-zlib": "ipfs/browserify-zlib",
|
|
"coriolis-data": "EDCD/coriolis-data",
|
|
"d3": "3.5.16",
|
|
"fbemitter": "^2.0.0",
|
|
"lodash": "^4.15.0",
|
|
"lz-string": "^1.4.4",
|
|
"react-number-editor": "Athanasius/react-number-editor.git#miggy",
|
|
"react": "^15.0.1",
|
|
"react-dom": "^15.0.1",
|
|
"superagent": "^1.4.0"
|
|
}
|
|
}
|