2014-10-20 13:03:43 +02:00
|
|
|
{
|
2016-11-10 15:52:49 +01:00
|
|
|
"name": "unleash-server",
|
2017-02-15 22:23:08 +01:00
|
|
|
"description": "Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.",
|
2021-10-01 19:46:57 +02:00
|
|
|
"version": "4.2.0-2",
|
2016-05-01 15:43:25 +02:00
|
|
|
"keywords": [
|
|
|
|
"unleash",
|
|
|
|
"feature toggle",
|
|
|
|
"feature",
|
|
|
|
"toggle"
|
|
|
|
],
|
2016-11-10 15:52:49 +01:00
|
|
|
"files": [
|
2021-02-12 11:42:00 +01:00
|
|
|
"dist",
|
|
|
|
"docs"
|
2016-11-10 15:52:49 +01:00
|
|
|
],
|
2016-05-01 15:43:25 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-11-13 15:31:10 +01:00
|
|
|
"url": "ssh://git@github.com:unleash/unleash.git"
|
2016-05-01 15:43:25 +02:00
|
|
|
},
|
|
|
|
"bugs": {
|
2016-11-13 15:31:10 +01:00
|
|
|
"url": "https://github.com/unleash/unleash/issues"
|
2016-05-01 15:43:25 +02:00
|
|
|
},
|
2021-08-13 13:51:29 +02:00
|
|
|
"types": "./dist/lib/server-impl.d.ts",
|
2016-05-01 15:43:25 +02:00
|
|
|
"engines": {
|
2021-04-13 09:22:37 +02:00
|
|
|
"node": ">=14"
|
2016-05-01 15:43:25 +02:00
|
|
|
},
|
2016-08-22 15:12:05 +02:00
|
|
|
"license": "Apache-2.0",
|
2021-02-12 11:42:00 +01:00
|
|
|
"main": "./dist/lib/server-impl.js",
|
2016-05-01 15:43:25 +02:00
|
|
|
"scripts": {
|
2021-02-12 11:42:00 +01:00
|
|
|
"start": "node ./dist/server.js",
|
2021-08-09 13:34:40 +02:00
|
|
|
"prestart:dev": "yarn run clean",
|
2021-02-15 08:39:28 +01:00
|
|
|
"start:dev": "NODE_ENV=development tsc-watch --onSuccess \"node dist/server-dev.js\"",
|
2021-04-09 11:16:06 +02:00
|
|
|
"copy-templates": "copyfiles -u 1 src/mailtemplates/**/*.mustache dist/",
|
2021-02-12 11:42:00 +01:00
|
|
|
"db-migrate": "db-migrate --migrations-dir ./src/migrations",
|
|
|
|
"lint": "eslint ./src",
|
2021-08-09 13:34:40 +02:00
|
|
|
"prebuild:watch": "yarn run clean",
|
2021-02-12 11:42:00 +01:00
|
|
|
"build:watch": "tsc -w",
|
2021-08-09 13:34:40 +02:00
|
|
|
"prebuild": "yarn run clean",
|
2021-08-27 12:08:26 +02:00
|
|
|
"build": "yarn run copy-templates && tsc --pretty",
|
2021-02-12 11:42:00 +01:00
|
|
|
"prepare": "yarn run build",
|
2021-05-28 11:10:24 +02:00
|
|
|
"test": "NODE_ENV=test PORT=4243 jest",
|
2016-11-10 15:52:49 +01:00
|
|
|
"test:docker": "./scripts/docker-postgres.sh",
|
2021-01-26 10:10:37 +01:00
|
|
|
"test:watch": "yarn test --watch",
|
2021-05-28 11:10:24 +02:00
|
|
|
"test:coverage": "NODE_ENV=test PORT=4243 jest --coverage --forceExit",
|
2021-08-09 13:34:40 +02:00
|
|
|
"clean": "del-cli --force dist"
|
2016-11-10 15:52:49 +01:00
|
|
|
},
|
2021-05-28 11:10:24 +02:00
|
|
|
"jest": {
|
2021-08-12 15:04:37 +02:00
|
|
|
"automock": false,
|
|
|
|
"setupFiles": [
|
|
|
|
"./setupJest.js"
|
|
|
|
],
|
2021-05-28 11:10:24 +02:00
|
|
|
"transform": {
|
|
|
|
"^.+\\.tsx?$": "ts-jest"
|
|
|
|
},
|
|
|
|
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
"/dist/",
|
|
|
|
"/node_modules/"
|
2021-02-12 11:42:00 +01:00
|
|
|
],
|
2021-05-28 11:10:24 +02:00
|
|
|
"moduleFileExtensions": [
|
|
|
|
"ts",
|
|
|
|
"tsx",
|
|
|
|
"js",
|
|
|
|
"jsx",
|
|
|
|
"json"
|
2021-02-12 11:42:00 +01:00
|
|
|
],
|
2021-05-28 11:10:24 +02:00
|
|
|
"coveragePathIgnorePatterns": [
|
|
|
|
"/node_modules/",
|
|
|
|
"/dist/",
|
|
|
|
"/src/migrations",
|
|
|
|
"/src/test"
|
|
|
|
]
|
2019-06-06 08:10:58 +02:00
|
|
|
},
|
2016-11-10 15:52:49 +01:00
|
|
|
"dependencies": {
|
2021-05-28 11:10:24 +02:00
|
|
|
"async": "^3.1.1",
|
2021-04-09 13:46:53 +02:00
|
|
|
"bcrypt": "^5.0.1",
|
2021-05-28 11:10:24 +02:00
|
|
|
"compression": "^1.7.4",
|
2021-09-20 12:34:18 +02:00
|
|
|
"connect-session-knex": "^2.1.0",
|
2021-05-28 11:10:24 +02:00
|
|
|
"cookie-parser": "^1.4.5",
|
2020-10-02 16:38:51 +02:00
|
|
|
"cookie-session": "^2.0.0-rc.1",
|
2021-04-16 15:29:23 +02:00
|
|
|
"cors": "^2.8.5",
|
2021-05-21 19:27:09 +02:00
|
|
|
"db-migrate": "0.11.12",
|
2021-09-03 12:06:58 +02:00
|
|
|
"db-migrate-pg": "1.2.2",
|
|
|
|
"db-migrate-shared": "1.2.0",
|
2018-12-17 11:02:52 +01:00
|
|
|
"deep-diff": "^1.0.2",
|
2020-04-13 22:38:46 +02:00
|
|
|
"deepmerge": "^4.2.2",
|
2019-10-03 15:32:48 +02:00
|
|
|
"errorhandler": "^1.5.1",
|
|
|
|
"express": "^4.17.1",
|
2021-02-18 09:03:21 +01:00
|
|
|
"express-session": "^1.17.1",
|
2021-09-13 10:23:57 +02:00
|
|
|
"fast-json-patch": "^3.1.0",
|
2020-02-21 23:20:06 +01:00
|
|
|
"gravatar-url": "^3.1.0",
|
2020-09-01 21:19:46 +02:00
|
|
|
"helmet": "^4.1.0",
|
2020-09-28 21:54:44 +02:00
|
|
|
"joi": "^17.3.0",
|
2021-09-28 20:53:39 +02:00
|
|
|
"js-yaml": "^4.1.0",
|
2021-09-27 13:02:04 +02:00
|
|
|
"knex": "0.95.11",
|
2019-11-18 08:11:38 +01:00
|
|
|
"log4js": "^6.0.0",
|
2021-01-19 10:42:45 +01:00
|
|
|
"memoizee": "^0.4.15",
|
2019-04-26 10:36:17 +02:00
|
|
|
"mime": "^2.4.2",
|
2019-01-28 12:23:05 +01:00
|
|
|
"moment": "^2.24.0",
|
2019-03-13 19:10:13 +01:00
|
|
|
"multer": "^1.4.1",
|
2021-01-19 10:42:45 +01:00
|
|
|
"mustache": "^4.1.0",
|
|
|
|
"node-fetch": "^2.6.1",
|
2021-04-09 11:16:06 +02:00
|
|
|
"nodemailer": "^6.5.0",
|
2021-04-09 13:46:53 +02:00
|
|
|
"owasp-password-strength-test": "^1.3.0",
|
2016-11-12 11:21:40 +01:00
|
|
|
"parse-database-url": "^0.3.0",
|
2021-09-03 12:06:58 +02:00
|
|
|
"pg": "^8.7.1",
|
2021-04-22 10:07:10 +02:00
|
|
|
"pg-connection-string": "^2.5.0",
|
2017-11-03 23:14:31 +01:00
|
|
|
"pkginfo": "^0.4.1",
|
2021-09-27 22:57:08 +02:00
|
|
|
"prom-client": "^14.0.0",
|
2016-12-01 17:43:08 +01:00
|
|
|
"response-time": "^2.3.2",
|
2018-05-14 13:49:31 +02:00
|
|
|
"serve-favicon": "^2.5.0",
|
2021-06-17 20:33:34 +02:00
|
|
|
"stoppable": "^1.1.0",
|
2021-10-01 19:46:43 +02:00
|
|
|
"unleash-frontend": "4.2.2",
|
2021-05-10 13:37:39 +02:00
|
|
|
"uuid": "^8.3.2"
|
2016-05-01 15:43:25 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-09-27 09:09:49 +02:00
|
|
|
"@types/bcrypt": "5.0.0",
|
|
|
|
"@types/express": "4.17.13",
|
|
|
|
"@types/express-session": "1.17.4",
|
|
|
|
"@types/faker": "5.5.8",
|
2021-09-27 09:20:35 +02:00
|
|
|
"@types/jest": "27.0.2",
|
2021-09-28 20:53:39 +02:00
|
|
|
"@types/js-yaml": "4.0.3",
|
2021-09-27 09:09:49 +02:00
|
|
|
"@types/memoizee": "0.4.6",
|
|
|
|
"@types/node": "16.6.1",
|
|
|
|
"@types/node-fetch": "2.5.12",
|
|
|
|
"@types/nodemailer": "6.4.4",
|
|
|
|
"@types/owasp-password-strength-test": "1.3.0",
|
|
|
|
"@types/stoppable": "1.1.1",
|
|
|
|
"@types/supertest": "2.0.11",
|
|
|
|
"@types/uuid": "8.3.1",
|
2021-10-04 19:44:30 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "4.33.0",
|
|
|
|
"@typescript-eslint/parser": "4.33.0",
|
2021-09-27 09:09:49 +02:00
|
|
|
"copyfiles": "2.4.1",
|
|
|
|
"coveralls": "3.1.1",
|
|
|
|
"del-cli": "4.0.1",
|
|
|
|
"eslint": "7.32.0",
|
|
|
|
"eslint-config-airbnb-base": "14.2.1",
|
2021-09-28 21:19:13 +02:00
|
|
|
"eslint-config-airbnb-typescript": "14.0.0",
|
2021-09-27 09:09:49 +02:00
|
|
|
"eslint-config-prettier": "8.3.0",
|
2021-09-27 13:02:51 +02:00
|
|
|
"eslint-plugin-import": "2.24.2",
|
2021-09-27 23:40:56 +02:00
|
|
|
"eslint-plugin-prettier": "4.0.0",
|
2021-09-27 09:09:49 +02:00
|
|
|
"faker": "5.5.3",
|
|
|
|
"fetch-mock": "9.11.0",
|
2021-09-27 12:57:52 +02:00
|
|
|
"husky": "7.0.2",
|
2021-09-29 22:08:50 +02:00
|
|
|
"jest": "27.2.4",
|
2021-09-27 09:09:49 +02:00
|
|
|
"jest-fetch-mock": "3.0.3",
|
2021-10-04 13:34:09 +02:00
|
|
|
"lint-staged": "11.2.0",
|
2021-09-27 16:01:52 +02:00
|
|
|
"prettier": "2.4.1",
|
2021-09-27 09:09:49 +02:00
|
|
|
"proxyquire": "2.1.3",
|
2021-09-27 12:22:22 +02:00
|
|
|
"source-map-support": "0.5.20",
|
2021-09-27 09:09:49 +02:00
|
|
|
"superagent": "6.1.0",
|
2021-09-27 13:34:00 +02:00
|
|
|
"supertest": "6.1.6",
|
2021-09-27 11:50:01 +02:00
|
|
|
"ts-jest": "27.0.5",
|
2021-09-27 16:03:03 +02:00
|
|
|
"ts-node": "10.2.1",
|
2021-09-27 17:00:17 +02:00
|
|
|
"tsc-watch": "4.5.0",
|
2021-09-27 13:28:43 +02:00
|
|
|
"typescript": "4.4.3"
|
2017-06-28 14:10:32 +02:00
|
|
|
},
|
2019-10-05 08:10:38 +02:00
|
|
|
"resolutions": {
|
2020-06-24 11:26:37 +02:00
|
|
|
"db-migrate/rc/minimist": "^1.2.5",
|
|
|
|
"knex/liftoff/object.map/**/kind-of": "^6.0.3",
|
|
|
|
"knex/liftoff/findup-sync/micromatc/kind-of": "^6.0.3",
|
|
|
|
"knex/liftoff/findup-sync/micromatc/nanomatch/kind-of": "^6.0.3",
|
2020-11-24 12:51:44 +01:00
|
|
|
"knex/liftoff/findup-sync/micromatch/define-property/**/kind-of": "^6.0.3",
|
2021-09-20 12:37:53 +02:00
|
|
|
"node-forge": "^0.10.0",
|
2021-09-27 13:26:18 +02:00
|
|
|
"set-value": "^4.0.1",
|
|
|
|
"ansi-regex": "^5.0.1",
|
|
|
|
"ssh2": "^1.4.0"
|
2019-10-05 08:10:38 +02:00
|
|
|
},
|
2017-06-28 14:14:55 +02:00
|
|
|
"lint-staged": {
|
2017-06-28 14:10:32 +02:00
|
|
|
"*.js": [
|
2021-02-11 14:08:33 +01:00
|
|
|
"eslint --fix"
|
2018-11-22 11:22:18 +01:00
|
|
|
],
|
2018-11-24 15:09:09 +01:00
|
|
|
"*.{json,css,md}": [
|
2021-02-11 14:08:33 +01:00
|
|
|
"prettier --write"
|
2017-06-28 14:10:32 +02:00
|
|
|
]
|
2018-11-22 09:03:36 +01:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
2018-11-22 11:17:50 +01:00
|
|
|
},
|
|
|
|
"prettier": {
|
|
|
|
"proseWrap": "never",
|
|
|
|
"singleQuote": true,
|
|
|
|
"tabWidth": 4,
|
|
|
|
"trailingComma": "all",
|
|
|
|
"overrides": [
|
|
|
|
{
|
2021-03-11 22:51:58 +01:00
|
|
|
"files": "*.{json,yaml,yml,md}",
|
2018-11-22 11:17:50 +01:00
|
|
|
"options": {
|
|
|
|
"tabWidth": 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2016-06-18 22:49:27 +02:00
|
|
|
}
|
2014-10-23 14:13:17 +02:00
|
|
|
}
|