-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.34 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
{
"name": "oauth-moleculer",
"version": "1.2.0",
"description": "oauth2-server + moleculerjs",
"main": "index.js",
"scripts": {
"clear": "rm -rf dist && npm run build && docker-compose up -d --build",
"dev": "moleculer-runner --repl --hot --config moleculer.dev.config.js services",
"seeders": "cd src/repository && sequelize db:seed:all",
"start": "moleculer-runner --config moleculer.config.js services",
"build": "./node_modules/.bin/babel src --out-dir dist",
"build:watch": "./node_modules/.bin/babel src --watch --out-dir dist",
"start:docker": "npm run build && docker-compose up -d --build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zerocowl/oauth-moleculer.git"
},
"keywords": [
"aouth2-server",
"moleculer",
"moleculerjs",
"oauth2"
],
"author": "zerocool",
"license": "MIT",
"bugs": {
"url": "https://github.com/zerocowl/oauth-moleculer/issues"
},
"homepage": "https://github.com/zerocowl/oauth-moleculer#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^8.0.0",
"joi": "^14.3.1",
"moleculer": "^0.13.9",
"moleculer-web": "^0.8.5",
"mysql2": "^1.6.5",
"nats": "^1.2.10",
"oauth2-server": "^3.0.1",
"sequelize": "^5.8.5",
"sequelize-cli": "^5.4.0",
"socketio": "^1.0.0",
"ua-parser-js": "^0.7.19"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-minify": "^0.5.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"moleculer-repl": "^0.5.7",
"prettier": "^1.17.0",
"prettier-eslint": "^8.8.2"
}
}