57 lines
1.9 KiB
JSON

{
"name": "@rondo.dev/server",
"version": "0.0.1",
"private": true,
"scripts": {
"test": "jest",
"lint": "tslint --project .",
"clean": "find src/ -type f -name '*.js' | xargs rm",
"watch": "npm-run-all -p '*:watch'",
"js:build": "browserify src/client/index.tsx -p [ tsify --project .] -g [ loose-envify purge --NODE_ENV production ] -v -o build/client.js",
"js:watch": "watchify src/client/index.tsx -p [tsify --project .] -v -d -o build/client.js",
"js:minify": "terser --ecma 5 --compress -o build/client.min.js --mangle -- build/client.js",
"start": "ts-node src/server/index.ts",
"start:watch": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.test.ts' --exec ts-node src/server/index.ts",
"typeorm": "ts-node ./node_modules/.bin/typeorm"
},
"dependencies": {
"@rondo.dev/argparse": "0.0.1",
"@rondo.dev/client": "0.0.1",
"@rondo.dev/common": "0.0.1",
"@rondo.dev/config": "0.0.1",
"@rondo.dev/db": "0.0.1",
"@rondo.dev/db-typeorm": "0.0.1",
"@rondo.dev/http-client": "0.0.1",
"@rondo.dev/http-types": "0.0.1",
"@rondo.dev/jsonrpc": "0.0.1",
"@rondo.dev/logger": "0.0.1",
"@rondo.dev/tasq": "0.0.1",
"@rondo.dev/validator": "0.0.1",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cls-hooked": "^4.2.2",
"cookie-parser": "^1.4.4",
"csurf": "^1.10.0",
"email-validator": "^2.0.4",
"express": "^4.17.1",
"express-session": "^1.17.0",
"http-errors": "^1.7.3",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-redux": "^7.1.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-ssr-prepass": "^1.0.7",
"redux": "^4.0.4",
"shortid": "^2.2.15",
"styled-components": "^4.4.1",
"supertest": "^4.0.2",
"typeorm": "^0.2.20"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "esm/index.js",
"devDependencies": {}
}