All checks were successful
continuous-integration/drone/push Build is passing
59 lines
2.2 KiB
JSON
59 lines
2.2 KiB
JSON
{
|
|
"name": "@rondo.dev/server",
|
|
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/server",
|
|
"version": "0.0.2",
|
|
"license": "MIT",
|
|
"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": "file:../argparse",
|
|
"@rondo.dev/captcha": "file:../captcha",
|
|
"@rondo.dev/client": "file:../client",
|
|
"@rondo.dev/common": "file:../common",
|
|
"@rondo.dev/config": "file:../config",
|
|
"@rondo.dev/db": "file:../db",
|
|
"@rondo.dev/db-typeorm": "file:../db-typeorm",
|
|
"@rondo.dev/http-client": "file:../http-client",
|
|
"@rondo.dev/http-types": "file:../http-types",
|
|
"@rondo.dev/jsonrpc": "file:../jsonrpc",
|
|
"@rondo.dev/logger": "file:../logger",
|
|
"@rondo.dev/tasq": "file:../tasq",
|
|
"@rondo.dev/validator": "file:../validator",
|
|
"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"
|
|
}
|