-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "reactivesearch-realm-function",
"version": "1.0.0",
"description": "",
"typings": "lib/cjs/index.d.ts",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"files": [
"lib",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "rm -rf lib",
"start": "rollup -w --config rollup.test.config.js",
"start:test": "jest --testTimeout=20000 --runInBand --watch",
"clear:test": "jest --clearCache",
"ts-types": "tsc --emitDeclarationOnly --outDir lib",
"build": "npm run clean && rollup --config rollup.config.js --environment INCLUDE_DEPS,BUILD:production",
"test-build": "npm run build && jest --testTimeout=20000 --runInBand --config rollup.config.js",
"format": "prettier --write 'src/**/*.(ts)'",
"prepublishOnly": "npm run build",
"realm-login": "realm-cli login",
"realm-pull": "rm -rf realm-app && realm-cli pull --local=./realm-app",
"realm-build": "node build",
"realm-push": "realm-cli push --local=./realm-app",
"dev": "nodemon --watch './**/*.ts' --exec 'ts-node --project tsconfig-dev.json' src/server.ts",
"prepare": "husky install",
"test": "yarn jest",
"unit-test": "yarn jest --config jest-unit.config.js",
"integration-test": "yarn jest --config jest-integration.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appbaseio/reactivesearch-realm-function.git"
},
"keywords": [],
"author": "Lakhan Samani",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/appbaseio/reactivesearch-realm-function/issues"
},
"homepage": "https://github.com/appbaseio/reactivesearch-realm-function#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.7.10",
"husky": "^7.0.0",
"jest": "^27.1.0",
"js-base64": "^3.7.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"rollup": "^2.56.2",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.2.0",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/jest": "^27.0.1",
"cli-progress": "^3.9.0",
"concat": "^1.0.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"lodash.range": "^3.2.0",
"mongodb": "^4.1.0",
"mongodb-realm-cli": "^2.6.0",
"ts-jest": "^27.0.5",
"yargs": "^17.1.1"
}
}