forked from happner/happner-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.38 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
{
"name": "happner-suite",
"version": "3.0.0",
"scripts": {
"test": "echo \"tests are not run from the main package of the workspace\" && exit 1",
"re-install": "rm -rf node_modules && rm -rf ./packages/*/node_modules && rm -rf package-lock.json && npm i",
"pre-publish": "node bin/pre-publish",
"lint": "eslint ./packages/$npm_config_package_name --ext .js",
"lint-fix": "eslint ./packages/$npm_config_package_name --ext .js --fix",
"check-env": "node -e 'console.log(process.env)' | grep npm"
},
"workspaces": [
"packages/demos",
"packages/happn-3",
"packages/happn-db-provider-loki",
"packages/happn-db-provider-mongo",
"packages/happn-db-provider-nedb",
"packages/happn-db-provider-sqlite",
"packages/happn-commons",
"packages/happn-commons-test",
"packages/happn-logger",
"packages/happn-nedb",
"packages/happn-primus-wrapper",
"packages/happn-util-crypto",
"packages/happn-cluster",
"packages/happner-cluster",
"packages/happner-client",
"packages/happner-2",
"packages/tame-search"
],
"dependencies": {
"axios": "^0.26.0",
"cd": "^0.3.3",
"ws": "^8.9.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-prettier": "^3.4.1",
"prettier": "^2.4.1"
}
}